Skip to content

Instantly share code, notes, and snippets.

@renaud
Created October 30, 2013 13:46
Show Gist options
  • Save renaud/7232958 to your computer and use it in GitHub Desktop.
Save renaud/7232958 to your computer and use it in GitHub Desktop.
aliases to list files to add/delete from git
alias gita="git status | egrep 'modified: ' | sed $'s/#\tmodified:/git add/g'"
alias gitd="git status | egrep 'deleted: ' | sed $'s/#\tdeleted:/git rm/g'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment