Skip to contentgit
题目
写出一些常用的 git 命令
- git add .
- git checkout xxx
- git commit -m "xxx"
- git push origin master
- git pull origin master
- git stash / git stash pop
简述多人使用 git 协作开发的基本流程
- git branch
- git checkout -b xxx / git checkout xxx
- git merge xxx
以及 merge 时需要解决冲突
讨论区
欢迎留下想法与补充