Advertisement
saratbhaswanth

Git Commands Through Tutorial

Jan 24th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. git log --all --oneline --graph --decorate ## Single line commit history log
  2. git log --since="3 days ago" ## Git log through days
  3. git log -- <filename> ## history of a file
  4. git config global alias.hist "log --all --oneline --graph --decorate"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement