Git 常用指令

清除账户密码
git config --system --unset credential.helper

更改分支
git checkout -b yourbranch origin/develop

未设置上游分支补救方法
git branch --set-upstream-to=origin/develop

删除分支
git branch -d XXX
git branch -D XXX 强制删除

查看分支
git branch

配置邮箱账户
git config --global user.name “yourname”
git config --global user.email “youremail.com”

克隆
git clone xxxx.git

添加文件
git add .

创建tag
git tag DEVELOP_V01.00.00.01 dlaf44
git push origin --tags

同步代码
生成patch
git rebase origin/develop
git format-patch origin/develop
应用patch
git am --ignore-space-changed --ignore-white-space *.patch

修改已经conmit的mark
git commit --amend

上一篇:git拉取代码报错:No tracked branch configured for branch master or the branch doesn‘t exist.


下一篇:git命令