git 初始配置

2022-03-31 19:05:56 字數 632 閱讀 6410

使用者名稱和郵箱

git config --global user.name 'your name'

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

配置換行符

windows下建議: git config --global core.autocrlf true // 這將使檔案換行符在倉庫裡lf,工作目錄裡crlf。

linux下建議: git config --global core.autocrlf input // 只在進倉庫時crlf-->lf。

起命令別名, 可以給命令起 alias 以減少拼寫,例如:

git config

--global

alias

.ci commit

git config

--global

alias

.co checkout

git config

--global

alias

.st status

則 git ci 就等同於 git commit,等等。

自動給一些命令的輸出加上色彩:

git config --global color.ui auto

git 初始配置

使用者名稱和郵箱 git config global user.name your name git config global user.email you your.domain 配置換行符 windows下建議 git config global core.autocrlf true 這將使檔...

Git初始化配置以及配置github

1,配置使用者名稱和郵箱 這裡是我github中配置的使用者名稱和郵箱 執行下面命令後,在c users yaosq盤下會出現乙個全域性檔案.gitconfig.git config global user.name 這裡換上你的使用者名稱 git config global user.email ...

git的優點 安裝和初始配置

版本控制是一種記錄乙個或若干檔案內容變化,以便將來查閱特定版本修訂情況的系統 本地版本控制系統 其中最流行的一種叫做 rcs,現今許多計算機系統上都還看得到它的蹤影。rcs 的工作原理是在硬碟上儲存補丁集 補丁是指檔案修訂前後的變化 通過應用所有的補丁,可以重新計算出各個版本的檔案內容。集中化的版本...