Guest User

Untitled

a guest
Nov 14th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. git command
  2. show list of all file in a commit
  3. git ls-tree --name-only -r <commit-ish>
  4.  
  5. get list of changed files in a commit id
  6. git diff-tree --no-commit-id --name-only -r <commit-ish>
  7.  
  8. by author
  9. git log --author='justin'
  10.  
  11. by message
  12. git log --all --grep='suite'
  13.  
  14. by message and author
  15. git log --all --author='justin' --grep='suite'
Add Comment
Please, Sign In to add comment