我想要一个分支来保存我的主分支中的所有文件,除了foo.txt和foo2.txt。我该怎么做?
答案 0 :(得分:10)
你必须从主人那里分出来。 检查一个新分支并删除您不想要的文件。
git checkout master
进入大师之后:
git checkout -b new_branch
rm foo.txt
rm foo2.txt
git add -u
git commit -m "removed foo and foo2"
git push origin new_branch