Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

11.8. git config

11.8.1. core.sshCommand

git 預設使用 id_rsa,指定私鑰方法是:

			
git config core.sshCommand "ssh -i ~/.ssh/id_rsa_example -F /dev/null"
git pull
git push
			
			

			
GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa_example -F /dev/null" git clone git@github.com:netkiller/netkiller.github.io.git		
			
			
11.8.2. fatal: The remote end hung up unexpectedly
error: RPC failed; result=22, HTTP code = 413 | 18.24 MiB/s
fatal: The remote end hung up unexpectedly
			
git config http.postBuffer 524288000
			
11.8.3. 忽略 SSL 檢查

使用自頒發 ssl 證書時需要開啟,否則無法 clone 和 push

			
export GIT_SSL_NO_VERIFY=true			
			
			

			
git config http.sslVerify "false"