Last Updated: February 25, 2016
·
201
· sadfuzzy

Show git changes close to current terminal position

Have you ever met a problem on Mac OS X, when you have got tiny terminal window to show all git changed files you’ve added to commit, and you need to scroll it up to see them?
So, you now have a solution:

$ brew install coreutils
$ git status |  gtac

gtac is an alias to linux tac command, showing file contents in reverse direction (last line is the first one, first is last)