Featured image of post Git使用

Git使用

git remote

1
2
3
git remote add origin [email protected]:malinkang/learngit.git #添加远程仓库
git remote remove origin #删除远程仓库
git remote -v #查看远程仓库地址

分支

1
2
3
4
5
6
7
git checkout -b v2.0.0 #创建分支
git checkout v1.0.0 #切换分支
git merge v1.0.0 #合并分支
git branch -d v1.0.0 #删除分支
git push origin --delete v2.0.0 #删除远程分支
git branch #查看分支
git branch -a #查看所有分支

标签

1
2
3
4
5
6
7
git tag -a v1.0.0 -m "版本1.0.0" #创建tag
git tag #查看所有tag
git tag -l "v1.*" #查看v1.开头的标签
git push origin --tags #推送所有标签
git push origin tag v1.0.0 #推送单个tag
git tag -d v1.0.0 #删除tag
git push origin --delete v2.2.0 #删除远程tag

参考

Licensed under CC BY-NC-SA 4.0
Built with Hugo
Theme Stack designed by Jimmy