Guest User

checkout

a guest
Jan 8th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.51 KB | None | 0 0
  1. C:\path>git status                      
  2. On branch master                                                                
  3. Your branch is up-to-date with 'origin/master'.                                
  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)                                                                                             modified:   file1.extension                                                            
  7. modified:   folder1/file2.extension                                                  
  8. modified:   folder2/file3.extension                                                      
  9. modified:   ../path/file4.extension
  10. no changes added to commit (use "git add" and/or "git commit -a")
  11.  
  12. C:path>git checkout -- .
  13.  
  14. C:\path>git status                      
  15. On branch master
  16. Your branch is up-to-date with 'origin/master'.
  17. Changes not staged for commit:
  18. (use "git add <file>..." to update what will be committed)
  19. (use "git checkout -- <file>..." to discard changes in working directory)                                                                                                                   modified:   ../path/file4.extension                                                                                                                       no changes added to commit (use "git add" and/or "git commit -a")
Add Comment
Please, Sign In to add comment