其他命令
设置git不使用SSL安全连接
git config --global http.sslVerify "false"
git config --global https.sslVerify "false"
设置允许上传的最大大小
git config --local http.postBuffer 1073741824
git config --local https.postBuffer 1073741824
合并两次commit内容
相关博客:
合并两个分支和两个仓库
相关博客:
查看commit详情
查看所有的commit记录
git log
查看提交的详情
git show
查看某次commit中对某个文件的修改
git show commit的id 文件名
本地分支误删恢复
相关博客: