1. 本地删除分支:
git branch -d uc-sign-mode1-timeout-filter
注意: 再次使用 git checkout uc-sign-mode1-timeout-filter
会再从远程分支pull下来上述分支
2. 删除上面的远程分支:
git push origin :uc-sign-mode1-timeout-filter
注意:冒号左边留空就表示删除后面的远程分支!!
3. git diff应该在git commit之前
4. git branch -av 显示本地和远程的分支的详细信息
5. git remote -v 显示所有远程信息
6. git reflog
7. git log --graph
8. git checkout -b NewBranchName
9. 将本地.gitconfig拷贝到ubuntu服务器上后,git diff --help 出现以下错误
fatal: '/usr/share/doc/git/html': not a documentation directory.
原因是一下一行需要要注释:
[help]
#format = html
上面一行导致ubuntu查找html文件作为帮助文档但是找不到!
10. git autocorrect spell
git config--global help.autocorrect 1