这里收集着我平时用到的Git操作 :)
推送到不同的分支
将本地的 master
分支推送到远程仓库的 fixreadme
分支
origin
代表着你的远程仓库地址
1 | git push origin master:fixreadme |
重新修改已经commit 的message
1 | git commit --amend -m "re-commit" |
删除远程branch
1 | git push origin --delete iambranch |
删除本地branch
安全删除,检查iambranch合并状态
1 | git branch -d iambranch |
强制删除
1 | git branch -D iambranch |
查看全部分支的提交 commit 状态
1 | git log --all --oneline --decorate --graph |