Skip to content

Instantly share code, notes, and snippets.

addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.9.2")
addSbtPlugin("com.foursquare" % "spindle-codegen-plugin" % "3.0.0-M4")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.4")
resolvers += Resolver.url("bintray-sbt-plugins", url("http://dl.bintray.com/sbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)
addSbtPlugin("com.typesafe.sbt" % "sbt-pgp" % "0.8.3")
@jingfengli
jingfengli / shrink-git-repo.sh
Last active September 14, 2015 20:48 — forked from aaronzirbes/shrink-git-repo.sh
This script will help you remove large files from your git repo history and shrink the size of your repository.
#!/bin/bash
echo "Finding and Purging Big Files From Git History"
echo "=============================================="
echo ""
echo "http://naleid.com/blog/2012/01/17/finding-and-purging-big-files-from-git-history/"
echo ""
pushd "$(git rev-parse --show-toplevel)" > /dev/null