如何在Git hub中创建一个名为“stage 1”的新分支,然后将我的工作推送到该分支,而不保存或损害主分支中的内容
答案 0 :(得分:2)
分支名称不能包含空格char。
创建一个新分支,
git checkout -b stage-1
开发任何东西。之后commit
和push
。
git commit -am . "commit message"
git push orgin stage-1
答案 1 :(得分:0)
此页面介绍了如何创建分支。 https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/
分支只是主分支的副本。所以它不会伤害主分支中的任何东西。