This is a recurring question for me, but I'd like to reiterate.
Quickly explain my situation: I am in an environment where I don't have a a git server, nor a shared partition or any common point among the coders. Don't have, will not have, can not have. Period.
I'm trying to come up with a workflow solution, to even in that environment we manage keep our reps at reasonable sync.
The solution I'm trying at the moment uses a discussion group to distribute patches, two main branches and with a seemingly short workflow, follows:
- The branches are
marsterandyours masteris the sync branch, which will keep you up to date and track what other deves still don't have of your code.yourswill be your new master, and is where your final code should be. You do not work inmaster.- everybody sends patches to the discussion list.
- I'm considering that very rarely two people will work in the same file.
There are two main actions in the workflow:
Generate patches:
- Got to
yours - Generate patches from
master(git format-patch master) - Go to
master - Merge
yoursintomaster - > Go to
yours, continue working withyours
Apply patches:
- Go to
masterbranch - Apply received patches
- Go to
yoursbranch - Merge
masterintoyours - > Continue working with
yours
If I got it right, this should keep a master branch reasonably in sync with everyone else.
Not that the yours branch is only to help in keeping track of what other people have or not.
There are a few problems I'm trying to figure if will be too much hassle:
- Order of patches applied?
- How to avoid and detect when someone misses a patch?
- How much problem can be when someone misses a patch?
- Other problems this can generate I haven't even thought of?
Thanks!
format-patch/amwill generate unique commit hashes per repository (different committer). so even if the trees in your repository are the same and history is basically the same, merging/comparing and talking about a particular commit will be a pita (because everybody has different commits, which just happen to evaluate to the same patches). save yourself the hassle and setup a server or get accounts on one of the many hosting sites (github, gitourious, etc.) — they offer private repositories too. – knittl Jul 11 '11 at 9:00git bundle? – knittl Jul 11 '11 at 9:07git bundle, will take a look! thanks. – filippo Jul 11 '11 at 9:53