I'm curious though, at what point in a project do you guys normally start using source control management (ie. subversion, git, mercurial)?
Ask HN - When is right time to start using version control for a project?
1–10 of 18 posts
Re: Ask HN - When is right time to start using version control for a project?
#2Re: Ask HN - When is right time to start using version control for a project?
#3Re: Ask HN - When is right time to start using version control for a project?
#4Before you write your first line of code.
$ mkdir newproject
$ cd newproject
$ git init
Initialized empty Git repository in /home/mbrubeck/newproject/.git/Re: Ask HN - When is right time to start using version control for a project?
#5If your version control system has so much overhead that putting code under VC is a chore or something to be put off and planned for, then it has a problem - and you need a new VCS, or at the very least, a new set of tools and workflows.
Re: Ask HN - When is right time to start using version control for a project?
#6Use source control from the very start. Git is pleasant to use.
Re: Ask HN - When is right time to start using version control for a project?
#7Before you write your first line of code.
Re: Ask HN - When is right time to start using version control for a project?
#8For what other reason is source control used but to maintain track of code changes like this!
Regular Time Machine backups and archiving a copy of the code after implementing a key feature are the only things I'm doing at this stage.
Then your using rudimentary source control anyway :) I'd switch to something more structured asap.
Im with the others: at the start. :) With hosting so cheap now (my choice is mercurial and bitbucket) and with private repositories barely a few clicks away there is no reason not to IMO.
Re: Ask HN - When is right time to start using version control for a project?
#9Before you write your first line of code.
I'm probably not the only person on here who keeps any notes and planning documents for projects under version control. I also regularly import research notes into comments before I write the code in question, but I'm weird and I've been told I do too much design up front.
Re: Ask HN - When is right time to start using version control for a project?
#10Before you write your first line of code.
I'm probably not the only person on here who keeps any notes and planning documents for projects under version control. I also regularly import research notes into comments before I write the code in question, but I'm weird and I've been told I do too much design up front.
I'd love to see this feature reach other SCM providersm, it's something i would use a lot.