MAC/Linux 下 Git 記住用戶名密碼

Mac自帶git,因此無需安裝,可用如下命令查看git版本及安裝位置linux

查看git位置
which git
whereis git

查看git版本

git --version

使用git前需先配置gitgit

git config --global user.name "Your Name"
git config --global user.email you@example.co

1.mac/linux下github

在~/下, touch建立文件 .git-credentials:
touch .git-credentials

# 用vim編輯此文件,
vim .git-credentials

#輸入內容格式
https://username:password@github.com

2. 在終端下執行  vim

git config --global credential.helper store

 

 

能夠看到~/.gitconfig文件,會多了一項:
[credential]
    helper = store

刪除保存的密碼:windows

一、刪除保存的密碼.net

git credential-osxkeychain erase

or:

printf "protocol=https\nhost=github.com\n" | git credential-osxkeychain erase

二、刪除密碼文件code

rm ~/.git-credentials

備註: git更改提交用戶名報錯對象

  • 緣由有兩個:blog

    1. 沒有擦除mac自身記憶的密碼串
    2. 提交對象弄錯。把提交地址寫錯,應該是git方式,誤寫成htts方式了。
  • Git修改提交user和email方法:get

    1. 使用指令修改: 
      git config –global user.name 「name」 –name是修改後的名字,去掉雙引號 
      git config –global user.email 「email」 –email是修改後的郵箱地址,去掉雙引號
    2. 修改配置文件。 
      在用戶目錄下:/home/username/,修改.gitconfig文件中對應的用戶名和密碼。
  • mac中擦除密鑰串的方法: 
    使用指令:git credential-osxkeychain erase

更多:

windows下: http://www.javashuo.com/article/p-kytvemfg-hv.html

相關文章
相關標籤/搜索