Git & Github
- Learn Git Branching(强推): [zh-cn]
- Pro Git 中文版
- Git lfs install
- Gitchat: [zh]
- Git规范化提交
- 第一次参与开源项目,如何提交pr: [Github: zh-cn] | [mmcv contribution]
- 给 Github Desktop 设置代理
- clone远程仓库的指定分支
git clone -b + 要clone的分支名 + 仓库地址 # eg: git clone -b dev git@github.com:CS-BAOYAN/CSBasicKnowledge.git
- SSH key的生成:
- 检查SSH key是否存在:
ls -al ~/.ssh # Lists the files in your .ssh directory, if they exist
- 生成SSH key, 会在/your_home_path/.ssh/生成id_rsa和id_rsa.pub
ssh-keygen -t rsa -C "your_email@example.com" # Creates a new ssh key using the provided email Generating public/private rsa key pair. Enter file in which to save the key (/your_home_path/.ssh/id_rsa):
- 检查SSH key是否存在:
- 下拉/提交远程仓库
- 查看远程仓库的信息:
可以看到远程仓库的名字和地址。git remote -v
- 查看当前分支名:
可以看到当前代码分支的名字git branch
- 从远程仓库下拉:
git pull <远程仓库的名字/地址> <代码的分支名>
- 冲突处理(苯人的笨方法)
然后使用git pull <远程仓库的名字/地址> <代码的分支名> --allow-unrelated-histories
查看冲突文件,手动解决冲突。git status
- 提交本地代码到远程仓库:
git push <远程仓库的名字/地址> <代码的分支名>
- 强制推送(苯人的笨方法,高风险,慎用):
git push -f <远程仓库的名字/地址> <代码的分支名>
- 推送tags到远程仓库:
git push --tags
- 删除远程分支:
git push origin --delete <分支名>
- 同步本地分支到远程仓库:
git push origin <本地分支名>:<远程分支名>
- 同步远程分支到本地仓库:
git checkout -b <本地分支名> <远程分支名>