Skip to content

Instantly share code, notes, and snippets.

@ph4un00b
Last active August 29, 2015 14:11
Show Gist options
  • Save ph4un00b/5bf3bb7b48f6f656ad66 to your computer and use it in GitHub Desktop.
Save ph4un00b/5bf3bb7b48f6f656ad66 to your computer and use it in GitHub Desktop.
unix commads to safe my ass
# remove all deleted files
* git ls-files --deleted -z | xargs -0 git rm
# compress directory
$ tar -zcvf project.tar.gz /the/path
# uncompress directory
$ tar -zxvf project.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment