Guest User

Untitled

a guest
Oct 21st, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. $ git check-ignore -v config.php
  2. .gitignore:2:src config.php
  3.  
  4. <source> <COLON> <linenum> <COLON> <pattern> <HT> <pathname>
  5.  
  6. git config core.excludesfile
  7.  
  8. ➭ git add app/views/admin/tags/
  9. The following paths are ignored by one of your .gitignore files:
  10. app/views/admin/tags
  11. Use -f if you really want to add them.
  12. fatal: no files added
  13.  
  14. TAGS
  15.  
  16. /TAGS
  17.  
  18. $ git commit -a
  19. fatal: Unable to create '..../.git/index.lock': File exists.
  20.  
  21. If no other git process is currently running, this probably means a
  22. git process crashed in this repository earlier. Make sure no other git
  23. process is running and remove the file manually to continue.
  24.  
  25. rm .git/index.lock
  26.  
  27. *
  28. !.gitignore
  29.  
  30. /srv/bootstrap/
  31.  
  32. srv/bootstrap/
Add Comment
Please, Sign In to add comment