1、选择文件夹(右键 git bash Here)
git init
2、迁出库
git clone https://github.com/gitlklo/VUT.git
3、查看分支
cd vut
git branch -a
3、迁出切换分支
git checkout 1.0.1
4、删除分支
git bush orgin --delete 1.0.1
5、添加文件到git
git add .
6、提交到本地库
git commit -m '备注'
7、提交到远程库
git push -u origin master
网友评论