Skip to content

Instantly share code, notes, and snippets.

@mreid
Created March 5, 2009 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mreid/74641 to your computer and use it in GitHub Desktop.
Save mreid/74641 to your computer and use it in GitHub Desktop.
# One-liner to add files to a git changeset that have been already deleted from
# the filesystem. (Surely there must be an easier way?)
git status | ruby -ne '$_ =~ /deleted:\s+(.*)/; `git rm #{$1}` unless $1.nil?'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment