liunx下git設置用戶名和密碼(含單獨項目)

設置git用戶名/郵箱

git config --global user.name [username]linux

git config --global user.email [email]git

注:若是是單項目,就在項目文件夾下設置,去掉global;github

可是這個僅僅是設置用戶名密碼,若是你的git 源每次操做須要你輸入用戶名/密碼驗證,你依然須要每次設置,那麼該如何辦呢?ubuntu

git保存用戶名密碼

這裏主要是配置一個config項vim

有兩個方法,基本上原理都是同樣,都是修改.git/config文件工具

1.使用以下命令,修改config文件便可保存fetch

echo "[credential]" >> .git/config
echo "    helper = store" >> .git/config

2.直接修改.git/config文件url

在linux/mac下能夠直接使用vim工具修改config文件spa

ubuntu@VM-7-212-ubuntu:~/kernel-code/kernel-netfilter-sample-code$ vim .git/config

##修改爲以下

[core]
    repositoryformatversion = 0
    filemode = true
    bare = false
    logallrefupdates = true
[remote "origin"]
    url = https://github.com/Miss-you/kernel-netfilter-sample-code.git
    fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
    remote = origin
    merge = refs/heads/master
##主要是後面這兩行,若是不想保存,則刪除便可
[credential]
    helper = store

##保存

這樣就能夠保存用戶名密碼,不用每次都輸入了!code

git config查看配置

使用git config --list查看已設配置

feiqianyousadeMacBook-Pro:xt_GTPU yousa$ git config --list
core.excludesfile=/Users/yousa/.gitignore_global
user.name=Miss-you
user.email=snowfly1993@gmail.com
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
core.precomposeunicode=true
remote.origin.url=https://github.com/Miss-you/xt_GTPU.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master

這樣配置以後,只要輸入一次帳戶和密碼就能夠了

相關文章
相關標籤/搜索