Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我在本地工作,但我想要 github 上的一个。我将该存储库添加为远程,但是我现在如何从中获取一个分支,并从中创建一个分支以切换到并继续工作?
如果你添加了遥控器(比如你称之为'github2'),你可以从中获取数据:
git fetch github2 master
然后从远程主机启动一个分支(假设你想称之为'master2'):
git checkout -b master2 --track github2/master
如果你想在 github2 的另一个分支上工作,只需将 master 替换为你想要的分支名称。