【快速上手】Git的使用教程
创建Git仓库
git init
查看当前仓库情况
git status
添加修改
git add (file) or git add .
查看未提交的修改
git diff
撤销提交操作
git reset
提交自己的身份
git config --global user.name "xxx" git config --global user.email ""
向git提交内容
git commit -m ""
将本地仓库变为远程仓库
git remote add origin (adress)
忽略提交文件
touch .gitignore and add files to .gitignore
不再追踪某个文件
git rm --cached (file)
添加分支
git branch (name)
切换分支
git checkout (name)
合并分支
git merge (name)
列出本地分支
git branch -a
删除分支
git branch -d (name) or -D(Mandatory deletion)
设置本地分支追踪远程分支
git push --set-upstream
相关推荐
baolen 2020-08-15
炼金术士lee 2020-08-15
huangchunxia 2020-08-07
lljhi0 2020-07-21
huangchunxia 2020-07-08
zhangxing 2020-07-05
ArkShen 2020-07-05
nebulali 2020-07-05
formula 2020-11-12
huhongfei 2020-11-05
乾坤一碼農 2020-10-27
liumengyanysu 2020-10-22
E哥的aws认证攻略 2020-10-15
tianyafengxin 2020-10-08
guying 2020-10-05
好脑筋不如烂笔头 2020-09-17