This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# converting an existing repo to use "lfs" | |
# | |
# note that a .gitattributes file for lfs needs to be added to any commit in | |
# which large files are present in the tree | |
wget http://repo1.maven.org/maven2/com/madgag/bfg/1.12.7/bfg-1.12.7.jar -O bfg-1.12.7.jar | |
git clone --mirror git://git.lsstcorp.org/LSST/DMS/testdata/afwdata.git afwdata | |
cd afwdata | |
java -jar ../bfg-1.12.7.jar --convert-to-git-lfs '*.{boost,dat,fits,gz}' --no-blob-protection | |
git reset --hard |