最佳答案
我在GitHub存储库中有两个分支,即master
和development
。我在开发分支中进行所有开发,如图所示。
git branch developmentgit add *git commit -m "My initial commit message"git push -u origin development
现在我想将development
分支上的所有更改合并到master
中。我目前的方法是:
git checkout mastergit merge developmentgit push -u origin master
请让我知道我遵循的程序是否正确。