vote up 3 vote down star
2

Many of us have a personal repository where we keep our code. Sometimes it's just our hobby code, some people include code from their jobs (shame!), but many of us have a repository in one form or another.

This is complicated by the fact that alot of us work in many spaces (Web Development, Windows and Web Services, Console apps) and many types of software (Screen scrapers, websites, file utilities, small tools, etc).

My question: How do you organize your code repository?

Personally, I organize mine by namespace as such:

Myname (root namespace)

  • Utils
    • HTTP
    • XML
    • IO
  • Projects
    • MV5 (blog)
    • MV6 (newer version of blog)

... and so forth. Whereas best practice is accepted as one file per class (usually), I organize one file per namespace, since IMHO when you have one Developer on a personal project, source control is less neccessary.

... Edit: I should clarify - I'm more interested in namespace organization and selection than physical locations as shown in this thread.

flag

3 Answers

vote up 5 vote down check

I disagree with some of your remarks. I quite like having source control on personal projects, as it is useful to revert to an older version on occasions, or compare changes.

I think the same standards should apply to personal development as other work, so I would also use one file / class.

To answer your main question, I have a flat directory of applications, containing subprojects where necessary.

I store the source in SVN on a secure internet site.

link|flag
touché; have reworded to be more nearly appropriate. – tsilb Feb 11 at 23:56
vote up 0 vote down
  • Branch
  • Tags
  • Trunk

And inside each;

  • Contrib (third-party stuff, SDKs etc)
  • Common (My shared code)
  • Projects
    • ProjA
    • ProjB

Btw - how do you get the second level of indents for bullet lists? :)

link|flag
Topic (no bullet) - Subtopic - Subsubtopic – tsilb Feb 11 at 23:54
oh nice formatting... Two spaces before the dash in subsubtopic. – tsilb Feb 11 at 23:55
@tslib - ahh, thanks! :) – Andrew Grant Feb 12 at 0:18
np. Wish I could get upvotes for comments :) – tsilb Feb 12 at 0:51
vote up 2 vote down

I use Git, where I can have the new version with the old version of the code, by branching.

apart from that, I just need a place to store it, and I don't care much for where its at:

C: (I know many people hate C..but hey, sometimes you have no choice) D: USB:

ricsoft\Projectname

once in a while it may have to be

ricsoft\web

or

ricsoft\tools

but very rarely, since I usually don't have that many projects falling in the same category.

check this question here, very similar.

@Andrew:

  • hello
    • hello 2
link|flag
Saw that thread; was more curious about namespace organization. – tsilb Feb 12 at 0:02
+1, good remark (plus I have to find one good post from you to upvote ;) 12 down, 3 to go: stackoverflow.com/questions/359727#486543 ). – VonC Feb 17 at 5:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.