Guest User

Untitled

a guest
Sep 23rd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. echo "\033[36mCommits in $1 not in $2:"; echo
  4. GIT_PAGER=cat git log "$2..$1" --relative-date
  5.  
  6. echo; echo "\033[36mCommits in $2 not in $1:"; echo
  7. GIT_PAGER=cat git log "$1..$2" --relative-date
Add Comment
Please, Sign In to add comment