Too big
Hi @joov , Thanks for your work. I tried to clone your repo but it takes ages because there are large files so I cancelled it. It should be lightweight as it is supposed to provide just the docker scripts. Didn't you forget to add some filenames in the .gitignore?
just add a .gitignore with the line
.vagrant/
because I am not sure this is useful here.
Hi, I will change to a more lightweigt version soon! The installation of git might be the problem. I will change that! Regards Johannes
Am 17.02.2018 um 11:49 schrieb Benjamin Ricaud [email protected]:
Hi @joov , Thanks for your work. I tried to clone your repo but it takes ages because there are large files so I cancelled it. It should be lightweight as it is supposed to provide just the docker scripts. Didn't you forget to add some filenames in the .gitignore?
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.
that 's better but now the large files are still in the history of github. So a normal clone will still download them as they are recorded in the previous commits.
to avoid that I have to do
git clone --depth=1 https://github.com/joov/gremlin-demo.git
to download only the last commit. The best would be to remove the file in all the commits. Have a look here:
https://help.github.com/articles/removing-sensitive-data-from-a-repository/
Hi Benjamin, I purged the history but I think it will be easier if I do a pull request and start from the nginx image. I will try to do this on the weekend and I hope you‘ll find it Ok. Regards Johannes
Am 17.02.2018 um 15:25 schrieb Benjamin Ricaud [email protected]:
that 's better but now the large files are still in the history of github. So a normal clone will still download them as they are recorded in the previous commits. to avoid that I have to do git clone --depth=1 https://github.com/joov/gremlin-demo.git to download only the last commit. The best would be to remove the file in all the commits. Have a look here: https://help.github.com/articles/removing-sensitive-data-from-a-repository/
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.
Hi, I have added a link to your demo on the Graphexp readme. Thanks!