diff options
author | Brian Harring <ferringb@google.com> | 2012-10-17 17:25:20 -0700 |
---|---|---|
committer | Brian Harring <ferringb@google.com> | 2012-10-17 17:25:20 -0700 |
commit | fdcebbd9f14026fd2cca7f23ccc29f9eb0f384ab (patch) | |
tree | 4ebc036973653a3cffdbaf58e893a4b48d6dd140 | |
parent | drop unnecessary git-work directory creation (diff) | |
download | git-conversion-tools-fdcebbd9f14026fd2cca7f23ccc29f9eb0f384ab.tar.gz git-conversion-tools-fdcebbd9f14026fd2cca7f23ccc29f9eb0f384ab.tar.bz2 git-conversion-tools-fdcebbd9f14026fd2cca7f23ccc29f9eb0f384ab.zip |
Drop the prune; it's unnecessary
-rwxr-xr-x | create-git.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/create-git.sh b/create-git.sh index 6953e0c..ac56561 100755 --- a/create-git.sh +++ b/create-git.sh @@ -55,8 +55,6 @@ echo "recomposed; repacking and breaking alternate linkage..." time git repack -Adf --window=100 --depth=100 # Wipe the alternates. rm "${git_root}/objects/info/alternates" || { echo "no alternates means no sources..."; exit 2; } -echo "doing cleanup..." -time git prune echo "doing basic sanity check" time git log -p refs/heads/master > /dev/null || echo "non zero exit code from git log run..." echo "Done" |