You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git-lfs would probably not be needed if binaries weren't being checked in
probably a good idea in case there are large objects to put these in a separate (sub-)module
something like this could help to gitignore extension-less binaries:
.gitignore
/*
!*.nim
!.gitignore
only mentioning this cause you brought my attention to your repo in nim-lang/Nim#8554 (comment) (thanks for the link!), so I was trying it out but git clone failed (got the clone to work after brew install git-lfs)
The text was updated successfully, but these errors were encountered:
timotheecour
changed the title
binaries shouldn't be checked in (usually);
binaries shouldn't be checked in (usually); need to gitignore them
Dec 4, 2018
I ditched git-lfs for now, so that people can clone the project again. That experience was painful. Binaries are now just part of the repository, but I try to keep them small. I won't add large assets to the project.
git-lfs would probably not be needed if binaries weren't being checked in
probably a good idea in case there are large objects to put these in a separate (sub-)module
something like this could help to gitignore extension-less binaries:
.gitignore
only mentioning this cause you brought my attention to your repo in nim-lang/Nim#8554 (comment) (thanks for the link!), so I was trying it out but
git clone failed
(got the clone to work afterbrew install git-lfs
)git filter-branch
could be used to cleanup the history to remove binarieshttps://wikileaks.org/ciav7p1/cms/page_41123851.html
https://docs.microsoft.com/en-us/azure/devops/articles/remove-binaries?view=vsts
The text was updated successfully, but these errors were encountered: