git add . 暂存所有更改
git commit -m '描述'
git push
git pull
git branch 新分支名 以当前分支内容,新建一个分支
git branch -m 旧名字 新名字 合并某个分支的内容到本分支下: git checkout 发起合并的分支名 (切换分支) git merge 被合并的分支名 (合并分支) 修改commit信息:https://blog.csdn.net/Chris_zhangrx/article/details/122018096 标签:git,合并,Git,branch,常用命令,整理,分支 From: https://www.cnblogs.com/ximu1009/p/17790042.html