git如何解析filename和branchname?

时间:2016-06-07 06:25:07

标签: git

git checkout xxxx

git如何解析它的文件名或分支机构名称?如果我的同事创建了一个文件名作为我现有的branchname,该怎么办?

2 个答案:

答案 0 :(得分:6)

如果发生冲突,您可以使用双击--来区分分支和文件

git checkout branch --
git checkout -- file

--之后的所有内容都被视为文件名。那个清单可能是空的。

答案 1 :(得分:0)

用于结帐分支(创建和结帐)

git checkout -b branchname

git checkout for file with same branchname已经存在

git checkout -- file

for files

git checkout filename