how to add large file
diff --git a/docs/how_to_add_large_file b/docs/how_to_add_large_file
new file mode 100644
index 0000000..9b5429a
--- /dev/null
+++ b/docs/how_to_add_large_file
@@ -0,0 +1,14 @@
+(see https://stackoverflow.com/questions/35518688/git-lfs-refused-to-track-my-large-files-properly-until-i-did-the-following)
+
+
+git lfs track "*.zip"
+git add .gitattributes
+git commit -m "Updated the attributes"
+git push
+git add my_large_file.zip
+git lfs ls-files
+
+And here I would ensure that I saw my_large_file.zip being tracked.
+
+git commit -m "Now I am adding the large file"
+git pus