1.首先要从源码地址fork一份代码
然后git clone 地址
git branch 分支(develop or master)
git status 获取状态
git remote add 名称 地址 添加文件的原地址
git pull 名称 master/develop
git push 名称 origine
git diff 文件 查看文件各个版本的区别
git log 查看日志
git add 文件 添加文件到缓存
git commit -m “提交文件说明” 对提交文件进行注释
git checkout 文件 恢复文件
git branch --set-upstream-to=origin/remote_branch your_branch
git 解决fatal: Not a git repository
git init
------
git如何删除已经 add 的文件 (如何撤销已放入缓存区文件的修改)
1一种是 git rm --cached “文件路径”,不删除物理文件,仅将该文件从缓存中删除;
2.一种是 git rm -f “文件路径”,不仅将该文件从缓存中删除,还会将物理文件删除(不会回收到垃圾桶)。