根据git 的日常使用频率,总结了一下
1、克隆工程
git clone https://github.com/XXXX/test.git
2、本地新建Git工程
本地分支与远程分支相连
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/XXXX/test.git
git push -u origin master
3、查看远程分支
git branch -a
4、查看本地分支
git branch
5、创建本地分支
git branch v1.1
v1.1是分支名
6、将本地分支推送到远程
git push origin v1.1
7、切换分支
git checkout v1.1
8.删除本地分支
git branch -d v1.1
9、删除远程分支
git branch -r -d origin/branch-name
git push origin :branch-name
10、查看远程git地址
git remote -v
网友评论