设置用户名和邮箱 1 2 3 4 5 6 $ git config --global user.name "Lou" $ git config --global user.email "lyloou6@gmail.com" $ git config user.name $ git config user.email
保存 push 时的用户名和密码 针对 http 协议的也可以不用总是输入用户名密码那么麻烦,如:https://github.com/lyloou/hexo.git
, 可以通过设置credential.help
来保存。
1 git config --global credential.helper store
同时同步多个远程分支 1 2 3 4 5 git config -–add remote.all.url http://domain1.com/repo.git git config -–add remote.all.url http://domain2.com/repo.git git push all master git push all develop
网络配置: 1 2 git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080'
或:
1 2 git config --global http.proxy http: git config --global https.proxy https:
Windows 下使用 Privoxy 转换 socks5 代理为 Http 代理 | 小田的 blog
配置别名 1 2 git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
解除上传文件大小限制 1 git config http.postBuffer 524288000
https://blog.csdn.net/zhiyuan_x/article/details/72954729
行尾结束符自动转换问题 warning: LF will be replaced by CRLF in xx.txt
如果项目的文件是依照文件的 md5 来作为标识,那么提交代码到远程仓库,文件的行尾结束符会自动发生改变,那么之前的 md5 标识就发挥不到作用 (这样的 bug 很难找),这时候就需要取消 git 的行尾结束符自动转换功能;
1 $ git config --global core.autocrlf false
.gitignore 文件 package.json
和/package.json
两种表示方式的区别
前者是所有目录中的 package.json
文件都被忽略;
后者是只有当前目录的 package.json
文件被忽略;
Go to your repository.
Create file .git/hooks/pre-commit with following content:
1 2 3 4 5 6 7 #!/bin/sh branch="$(git rev-parse --abbrev-ref HEAD) " if [ "$branch " = "develop" -o "$branch " = "master" ]; then echo "You can't commit directly to master or develop branch" exit 1 fi
Make it executable (not required on Windows):
1 $ chmod +x .git/hooks/pre-commit
To disable fast-forwad merges you must also add following option to your .git/config file:
1 2 [branch "master"] mergeoptions = --no -ff
If you want also protect master branch on your remote, check this answer: How to restrict access to master branch on git
NOTE
配置 Git 的时候,加上–global 是针对当前用户起作用的,如果不加,那只针对当前的仓库起作用。
可以通过配置~/.gitconfig
文件来删除和修改配置
参考链接