Skip to content

Instantly share code, notes, and snippets.

@jaygooby
Last active January 18, 2021 08:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jaygooby/6f343daa5bd55d3dfba1235263b2bb3e to your computer and use it in GitHub Desktop.
Save jaygooby/6f343daa5bd55d3dfba1235263b2bb3e to your computer and use it in GitHub Desktop.
Opens all your currently uncommitted files from `$PWD` in Atom, ready for a shiny new day of productive work
# I've got this as an alias, but you could just save it to ~/bin etc
#
# You don't have to use atom either, it would work just as well with subl or vim or whatever,
# only the pun's not as good then...
atom . $(git status --porcelain | cut -d" " -f3 | xargs -I {} echo './'{} | xargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment