Added a Makefile and .gitignore#3
Conversation
| *.sql | ||
| *.sqlite | ||
|
|
||
| # LaTeX Generated Files # |
There was a problem hiding this comment.
It would be much better for this to only exclude temporary files generated by LaTeX. (For example, someone with a sql or sqlite file used to store experiment results and automatically generate figures might be surprised to find it excluded from version control.)
There was a problem hiding this comment.
I will admit to just including a boilerplate .gitignore that has everything
that I usually don't want to push. Perhaps it isn't the most concise, but I
don't think individuals will have issue with it and could modify to fit
specific use as needed.
Or I could just change it for the pull request :)
On Tue, May 17, 2016 at 5:10 PM Will Benton notifications@github.com
wrote:
In .gitignore
#3 (comment):+.7z
+.dmg
+.gz
+.iso
+.jar
+.rar
+.tar
+.zip
+
+# Logs and databases #
+######################
+.log
+.sql
+*.sqlite
+
+# LaTeX Generated Files #It would be much better for this to only exclude temporary files generated
by LaTeX. (For example, someone with a sql or sqlite file used to store
experiment results and automatically generate figures might be surprised to
find it excluded from version control.)—
You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub
https://github.com/willb/wi-thesis-template/pull/3/files/b9852d04476cd951b43e969e4ba8bbc75b1b6fb1..642934b69daba76b188d9e1687c3895e09617080#r63613389
There was a problem hiding this comment.
Yes: it's not an issue of boilerplate, it's an issue of surprising users who might actually want to commit those things. In general, it's better to tread lightly with default .gitignores. :-)
There was a problem hiding this comment.
I'll fix it up and resubmit. I'm still learning git and this is a wild ride.
On Tue, May 17, 2016 at 5:17 PM Will Benton notifications@github.com
wrote:
In .gitignore
#3 (comment):+.7z
+.dmg
+.gz
+.iso
+.jar
+.rar
+.tar
+.zip
+
+# Logs and databases #
+######################
+.log
+.sql
+*.sqlite
+
+# LaTeX Generated Files #Yes: it's not an issue of boilerplate, it's an issue of surprising users
who might actually want to commit those things. In general, it's better to
tread lightly with default .gitignores. :-)—
You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub
https://github.com/willb/wi-thesis-template/pull/3/files/b9852d04476cd951b43e969e4ba8bbc75b1b6fb1..642934b69daba76b188d9e1687c3895e09617080#r63614272
|
The Could you please rebase to single-purpose commits with descriptive names and eliminate the extra additions? |
|
Closing this one in favor of starting anew. See it here: #4 |
Including a generic Makefile for those that may prefer CLI dissertation-writing as well as a .gitignore for all of the extra compiled files should someone want to directly work on their dissertation in a git repo.