git 基本配置

git基本配置git

//查看用戶名
git config user.name
//查看用戶郵箱地址
git config user.email

修改用戶地址和郵箱dom

修改用戶名稱
git config --global user.name "username"
修改郵箱地址
git config --global user.email "email@xxx.com"

最小配置code

1. 配置user信息(必須,不配置的話,最後Git作變動提交時會出現提示信息,提示須要作相關配置)
git config [--local | --global | --system] user.name 'your_name'
git config [--local | --global | --system] user.email 'your_email@domain.com'

做用域區別:
local:只對用戶當前工做倉庫有效(缺省值)
global:對當前用戶全部倉庫有效(經常使用)
system:對系統全部登陸的用戶有效(不經常使用)
注:優先級爲local > global > system

2. 顯示config的配置
git config --list [--local | --global | --system]

3. 清除unset
git config --unset [--local | --global | --system] user.name

git 重命名文件作用域

git mv readme readme.me

[@xpMac:odm (master)]$ git status
On branch master
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

renamed:    readme -> readme.me

git 提交文件it

git commit -m'rename'

git 清空暫存區ast

git reset --hard
注意:該操做很危險,以前修改的被歸入暫存區的內容都會消失
相關文章
相關標籤/搜索