1.添加.gitignore并生效
vim .gitignore
|
|
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
2.回滚某个版本
git reset --hard commit_id
git push origin -- force
3.Github上fork项目后与原项目保持同步
|
|
Keep Moving, Keep Learning
1.添加.gitignore并生效
vim .gitignore
|
|
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
2.回滚某个版本
git reset --hard commit_id
git push origin -- force
3.Github上fork项目后与原项目保持同步
|
|