说,到目前为止,我只从事master
的工作,并且已经将所有提交推送到github.com上的master
分支。用testing
中的所有内容(在这个特定时间点)创建一个master
很简单吗?
$ git checkout -b testing
$ git add *
$ git push origin testing
答案 0 :(得分:1)
是的,正如RomainValeri所说,git add *
要创建测试分支,如果您在master分支中:
git checkout -b testing
要将您的修改推送到分支测试:
git add -A
git commit -m "Some message"
git push origin testing
然后,如果您要将测试中的内容合并到master分支:
git checkout master
git merge testing