Last Updated: May 15, 2019
·
646
· marcohamersma

Open recent files in your editor

If you switch branches a lot and close editor tabs is they're not relevant to your current branch, the following alias will help you pick up where you left off.

alias limeit="git show --pretty='format:' --name-only HEAD | xargs subl"

Replace subl with your favourite editor, of course.