|
|
| | Ask HN: How do you use GitHub for LaTeX documents? | | 5 points by ginnungagap on June 7, 2019 | hide | past | favorite | 9 comments | | I recently started using github for a programming project from my university and I noticed a few people using it to host LaTeX projects as well. To the people on HN who do that, how does it work? Do you have a LaTeX editor with github support? How do you automate the process? What are your tips and tricks? (I usually write LaTeX using kile under Ubuntu 18.04, but I'm very willing to change editor if needed) |
|

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact
|
There are many git tutorials. Git Immersion http://gitimmersion.com/ is the one I used. Not claiming it's the best. Just that it has a long track record, has been updated since Jim Weirich died, and worked for me. Eight hours spread over several days will probably be more than enough and you will learn much more Git than you need.
The reason I recommend learning the Git command line is that it decouples version control from editor choice. If you try a different editor a month from now, only your editor changes. You don't have to learn how it handles Git...that's the Unix philosophy: compose little programs that do one thing well. All that changes is the editor part of your workflow.
The other reason I recommend "just learning the command line" is the many times I have spent many many hours looking for the perfect tool, wading through redundant Google search results, downloading and installing software, learning new special programs, only to find that underlying issue remained. I didn't understand the program I was trying to avoid learning.