每个人都有自己的想法,你不能否认底层的工人没有自己的想法,只是他们没有上升到下达指令位置的条件,不管是软的还是硬的
工作让你原来越小白的时候,那就只能接着从小白做起
1、修改远程仓库的地址
git remote set-url origin https://github.com/jma/test.git
2、重命名远程仓库
git remote rename origin master
3、删除本地配置的远程仓库
git remote rm master
4、删除远程分支
git push origin --delete branch1
5、删除本地分支
git branch -d branch2
6、恢复本地删除的分支
git branch r_branch1 commit_id
7、git克隆子模块
git submodule init
git submodule update
或者直接使用--recursive选项
学习了。重中之重