tags:

views:

48

answers:

1

How do people who aren't committers on open source projects keep their changes on source control before they are ready to submit a patch?

Specifically, say I'm working on an apache project like Hadoop. I would like to be able to maintain the original subversion bindings (for things like checking project history, looking at a specific revision, etc), but I would also like to keep my own changes versioned (for my own sanity).

I guess I could use 2 different projects, each with its own subversion bindings, but I was wondering if the former scenario, only one project, was possible. I would also like to hear about other alternatives.

Thanks.

+2  A: 

if the project is running svn try running git in the same installation, that way you can have your own local changes/commmits in the same directory

Fredrik Leijon
Perhaps using git-svn?
Ian Oxley
Thanks, using git on top of svn sounds like a good idea. I'll look into git-svn.
Mechanistician