We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
git branch 在本地构建一个git分支, 可以在新分支实现代码,进行尝试 git checkout 进入改分支 git merge 合并分支 git commit 提交分支修改 git push 将分支修改上传到git git pull 从服务器获得分支信息
git remote add origin [email protected]:liyonghelme/codeOnNormal.git 定义远程服务器别名叫origin git push origin liyong 将本地分支liyong 上传到服务器上
git commit -a 为所有修改做commit
当新分支成熟,可以合并到主分支时: 在master git merge liyong 再上传