Live data from Hacker News

Ask HN: Using a version control system for your resume?

news.ycombinator.com

1–5 of 5 posts

Ask HN: Using a version control system for your resume?

#1
I often come across advice to have different resumes for different types of companies, and to continue making it up to date. As a living, breathing document, is it a good candidate for applying a VCS to? For instance branches for different resume types, but sharing common content. What are your thoughts on applying version control to your resume? I don't think this idea is an original one, but I don't see it mentioned much.

Re: Ask HN: Using a version control system for your resume?

#2
I do not build my resume from scratch. Often it is exported to PDF from some other service. I store this PDF in the git repository for my website, which is published on GitHub Pages. So inevitably, my resume has snapshots.

File formats like PDF do not lend themselves to version control. It would be hard to merge improvements on a shared "feature" of your resume from one branch into another branch.

Re: Ask HN: Using a version control system for your resume?

#3
post #2

I do not build my resume from scratch. Often it is exported to PDF from some other service. I store this PDF in the git repository for my website, which is published on GitHub Pages. So inevitably, my resume has snapshots. File formats like PDF do not lend themselves to version control. It would be hard to merge improvements on a shared "feature" of your resume from one branch into another branch.

I tend to use the .doc format and edit locally on my computer, and only export to PDF when I'm ready to send out the resume. I'm not certain if .doc would be much easier format to share changes on a resume.

Re: Ask HN: Using a version control system for your resume?

#5
I have my resume in LaTeX and keep versions of it tracked in Git, which works pretty well for me.

One thing I like about using LaTeX is that I can comment and uncomment bullets for various jobs I've done and modify the job description based on what I'm applying for.

I don't think tracking a doc or pdf file would work as well.