github自用指南
创建仓库,并同步代码
1. 去GitHub网页"New repository"
2. 在本机
git clone xxx.git
git add .
git commit -m "remove debug inform"
git push
3. 如果本机代码有修改,也是采用这种方法
Github中的PR操作
1. 贡献代码:fork,修改,请求合并代码(pull request)
2. 同步最新代码:反向PR即可
https://blog.csdn.net/thinking_fioa/article/details/79516352
git删除远程分支和本地分支
当我们集体进行项目时,将自定义分支push到远程的同名分支,再merge到主分支master上。之后,如何删除远程的自定义分支呢?
首先,使用命令git branch -a 查看所有分支
其中,remotes/origin/feature/switch
等就是远在github的分支
删除远程分支:
使用命令 git push origin --delete feature/switch
可以删除远程分支feature/switch
删除本地分支:
使用 git branch -d feature/run
直接删
[如何重命名本地和远程Git分支](https://www.myfreax.com/how-to-rename-local-and-remote-git-branch/) [git删除master分支](https://www.jianshu.com/p/d90e855f5bdc)
个性签名:时间会解决一切