Guest User

Untitled

a guest
May 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ```
  2. $ git status
  3.  
  4. Changes not staged for commit:
  5. (use "git add <file>..." to update what will be committed)
  6. (use "git checkout -- <file>..." to discard changes in working directory)
  7. modified: gulpfile.js
  8.  
  9.  
  10. $ git mark debug .
  11.  
  12. Marked gulpfile.js as debug change
  13.  
  14. $ git add .
  15.  
  16. Nothing to add
  17. (some changes are marked "debug" and weren't added)
  18.  
  19. $ git status
  20.  
  21. Changes marked "debug":
  22. (these changes are marked so they won't be committed or added to the index by "git add <file>")
  23. (use "git unmark <file>" or "git add --force <file>" to add them to the index)
  24.  
  25. modified: gulpfile.js
Add Comment
Please, Sign In to add comment