Git 基本流程示意图
2021-06-26 16:40:48 7 举报
Git 基本流程示意图
作者其他创作
大纲/内容
远程仓库
📁ABC 📄a.txt 📄b.txt 📄c.txt📁XYZ 📄x.txt 📄y.txt 📄z.txt
add
📁ABC 📄a.txt 📄b.txt 📄c.txt
📁XYZ 📄x.txt 📄y.txt 📄z.txt
HEAD
master
工作区
回退到上一个版本:git reset HEAD^回退到指定版本:git reset commitId
撤销 modify : git restore <file> 或 git checkout -- <file>
restore --stage <file>或者reset HEAD <file>
commit
stage
版本库
📁ABC 📁XYZ 📄a.txt 📄x.txt 📄b.txt 📄y.txt 📄c.txt 📄z.txt
pull
push
modify
收藏
收藏
0 条评论
下一页