Git基本配置

2021-09-25 05:59:45 字數 1027 閱讀 7314

1. 系統需要安裝git

​ 注意不同系統下安裝是不同的,但後面的配置是相同的

2. 配置個人身份

$ git config --global user.name "name"

$ git config --global user.email "***@163.com

3. 文字換行符配置

由於linux系統跟windows系統下換行符是不同的

windows系統下

git config --global core.autocrlf true

linux系統下

git config --global core.autocrlf input

如果你是windows程式設計師,且開發僅僅是在windows上面

git config --global core.autocrlf false

4. 文字編碼配置

git commit的時候需要提交一些中文編碼

中文編碼支援

$ git config --global gui.encoding utf-8

$ git config --global i18n.commitencoding utf-8

$ git config --global i18n.logoutputencoding utf-8

顯示路徑中文

$ git config --global core.quotepath false

5.與伺服器的認證配置,常見的兩種協議認證方式

http/https 每次push需要密碼

6. ssh認證配置過程

生成公鑰

$ ssh-keygen -t rsa -c ***[email protected]

將公鑰新增到**平台

Git的基本配置

配置使用者名稱 提交時會引用 git config global user.name imooc 配置郵箱 自己的,提交時會引用 git config global user.email 郵箱 其他配置 git config global merge.tool kdiff3 要是沒有裝kdiff3就...

git基本環境配置

yum源中已有的git版太低,所以選擇原始碼編譯,也比較簡單,由於git上許多專案需要python環境不同,因此保留系統自帶的python2.x版本,並編譯python3.x wget tar xvf python 3.5.2.tgz c usr local src cd usr local src...

git的基本配置

配置使用者名稱 git config global user.name messistats配置郵箱 git config global user.email 1247737960 qq.com檢視資訊配置 git config list初始化git專案 git init檢視檔案狀態 git sta...