Skip to content

mckenfra/git_diet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

git_diet

Sometimes you just don't want git to keep absolutely everything that has ever been committed to a repo. Maybe you need to trim down your repo size to put it on github or push it to heroku, or maybe you are just a little OCD. Either way, here's hoping some of the scripts in here can help you.

These scripts have only been tested on Mac OS X. All help very very welcome :D

find_fattest_objects.sh

Shows the largest objects in the git repo of the current directory

find_fattest_objects.sh [-n <number_of_objects>] [-d] [-f]

  OPTIONS
    -n  Show the n largest files in the repo (default 10)
    -d  Filter out files that are currently in the project
    -f  Show file paths only (useful for piping into other scripts)

purge_objects.sh

Purge all history of the given objects from the repo

purge_objects.sh <file>...

  OPTIONS
    file  One or more file paths to purge

Example

To delete the 50 largest objects in your repo that are files that are not in your project anymore

 find_fattest_objects.sh -n50 -d -f | xargs purge_objects.sh 

About

When your git repo needs to lose some weight...

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%