Git 常用命操作

2019-12-26  本文已影响0人  visitor009

将本地仓库与线上仓库关联

git add .
git commit -m ''
git remote add origin git地址
git push -u origin master

配置个人信息

git config --global user.name "……" #定义全局的用户名
git config --global user.email "……" #定义全局的邮件地址
git config --list #查看配置信息

撤销

// 撤销 git add 提交的文件
git reset HEAD [file]

// 重新commit,覆盖上一次的
git commit --amend

//  撤销文件的修改,回到上一次commit或开始的版本
git checkout -- [file]

提交时保存账号密码git config --global credential.helper store

git教程
git 命令

上一篇下一篇

猜你喜欢

热点阅读