Git 基础设置 (帐号和环境变量设置,颜色设置)

直接在 Shell 下執行下述:
git config --global user.name "Tsung"
git config --global user.email "[email protected]"
git config --global color.diff auto # git diff 要顯示顏色
git config --global color.status auto # git status 要顯示顏色
git config --global color.branch auto
註: 這些設定會在 ~user/ 下產生 .gitconfig, 所以我们也可以直接编辑这个文件,如下所示
----------------------------------------------------------------
[color]
    diff = auto
    status = auto
    branch = auto
[user]
    name = Tsung
    email = [email protected]
------------------------------------------------------------------
快捷方式配置:
$ git config --global alias.st status


$ git config --global alias.ci commit


$ git config --global alias.df diff


$ git config --global alias.co checkout


$ git config --global alias.br branch


临时性的设置的话就不要加--global 参数,比如


$ git config user.name "2"


$ git config user.email "[email protected]"
 

你可能感兴趣的:(shell,git,user,email,branch)