git 命令

git永久保存账号密码,免去git重复输入账号密码操作

在git bash 中执行命令:git config --global credential.helper store

 

配置用户名:

git config --global user.name  "username"  
git config --global user.email  "email"

修改本地仓库的用户名和邮箱:

git config --replace-all user.name "name"

git config --replace-all user.email "[email protected]"

 

丢弃本地变更 重置为远端分支内容

 git reset --hard origin/branchName

你可能感兴趣的:(git 命令)