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.
我在 Git 中创建了一个名为的新分支,但在创建它之前table我没有运行。git fetch origin
table
git fetch origin
事实证明,有人table在我之前创建了一个名为的分支。
如何删除我创建的并签出他们的?
请执行下列操作:
$ git branch -D table $ git checkout -b table origin/table
-m 标志将允许您重命名分支。
git branch -m oldname newname