Advertisement
tom

Git refuses to stop thinking that the ISSUE_TEMPLATE is modified

tom
Dec 11th, 2020
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. [root@assets snipeit]# git status
  2. # On branch master
  3. # Changes not staged for commit:
  4. # (use "git add <file>..." to update what will be committed)
  5. # (use "git checkout -- <file>..." to discard changes in working directory)
  6. #
  7. # modified: .github/ISSUE_TEMPLATE/Bug_report.md
  8. # modified: .github/ISSUE_TEMPLATE/Feature_request.md
  9. #
  10. no changes added to commit (use "git add" and/or "git commit -a")
  11. [root@assets snipeit]# ls
  12. CODE_OF_CONDUCT.md Vagrantfile c3.php database phpmd.xml server.php webpack.mix.js
  13. CONTRIBUTING.md _config.yml codeception.yml docker phpunit.xml snipeit.sh
  14. Dockerfile ansible composer.json index.html public storage
  15. Dockerfile.alpine app composer.lock install.sh resources tests
  16. LICENSE artisan config package-lock.json routes upgrade.php
  17. README.md bootstrap crowdin.yml package.json sample_csvs vendor
  18. [root@assets snipeit]# nano upgrade.php
  19. [root@assets snipeit]# git checkout -- .github/ISSUE_TEMPLATE/Bug_report.md
  20. [root@assets snipeit]# git checkout -- .github/ISSUE_TEMPLATE/Feature_request.md
  21. [root@assets snipeit]# git status
  22. # On branch master
  23. # Changes not staged for commit:
  24. # (use "git add <file>..." to update what will be committed)
  25. # (use "git checkout -- <file>..." to discard changes in working directory)
  26. #
  27. # modified: .github/ISSUE_TEMPLATE/Bug_report.md
  28. # modified: .github/ISSUE_TEMPLATE/Feature_request.md
  29. #
  30. no changes added to commit (use "git add" and/or "git commit -a")
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement