- git add .
- git commit -m '描述信息'
- git push
- git pull
- fork
- git clone url
- git fetch origin #clone只会拉下来默认分支,通过fetch获取远程的所有分支列表
- git checkout -b new_branch_name origical_branch_name
- 完成文件修改
- git add .
- git commit -m “描述信息”
- git push [远程仓库名] [本地分支名]:[远程分支名]
- 创建pull request,贡献原repo
参考资料: 书生大模型训练营