鼎鼎知识库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

解决一次git问题.md 681B

hace 3 años
hace 3 años
hace 3 años
hace 3 años
123456789101112131415161718192021222324252627282930313233343536373839
  1. > 出现非常混乱的情况,首先本地回滚到某个版本:
  2. ```
  3. git reset xxx --hard
  4. ```
  5. 然后让远程也回滚
  6. ```
  7. git push origin master -f
  8. ```
  9. > 查看最近记录
  10. ```
  11. git log --since=1.days
  12. git log --since=1.weeks
  13. git log -p -2 --oneline
  14. ```
  15. > Please commit your changes or stash them before you merge. 场景是不想把本地的一个修改文件提交上去
  16. ```
  17. git stash
  18. git pull
  19. git stash pop
  20. 另外:
  21. git stash list
  22. git stash clear
  23. ```
  24. > 删除缓存区的内容
  25. 正确的做法应该是:
  26. ```
  27. --从暂存区删除:git rm --cached logs/xx.log
  28. --把删除文件放.gitignore文件
  29. --提交变化:git add --all; git commit -m "some changes";
  30. ```