git 配置

可以使用命令配置git git

//配置不提交文件權限
git config core.fileMode false

在用戶目錄下(~),編輯 .gitconfig文件: github

[user]
name = xxxx
email = xxx@163.com

[alias]
co = checkout
ci = commit -a
st = status
br = branch
oneline = log --pretty=oneline --since='2 days ago'
onelog = log -p -1

[color]
diff = auto
status = auto
branch = auto
ui = auto

[remote "origin"]
url = https://you:password@github.com/you/example.git //配置用戶名密碼

[core]
fileMode = false  //配置不提交文件權限  默認爲 ture 


1.告知服務器本身的名字,讓他知道這些操做是你作的 shell

$git config –global user.name 「你的名字服務器

2.告知服務器本身的郵箱地址,服務器經過這個來將你提交的代碼聯繫到你的git帳戶 ui

$git config –global user.email 「你的Email地址」 url

(注意:這裏填寫的Email地址最好和你的git賬號Email相同) spa

3.最後,若是你不想每次在提交代碼的時候都輸入賬號密碼的話,須要如下的配置: code

$git config –global credential.helper cache 內存

(開啓credentialhelper,證書/憑證助手,這樣github才能在內存中保存你的信息) ci

$git config –global credential.helper 'cahe –timeout=3600'

(這樣,github就會保存你的賬號密碼1個小時)

相關文章
相關標籤/搜索