login
Header Space

 
 

Re: Using email between 2 developers to keep git repositories in sync

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <ab_lists@...>
Cc: <git@...>
Date: Tuesday, January 22, 2008 - 9:00 am

Hi,

On Tue, 22 Jan 2008, ab_lists@mac.com wrote:


My recommendation: Use bundles.  Just make the initial "clone" like this:

	$ git bundle create initial.bundle --all

Send the file "initial.bundle" (which you just created) to your 
co-developer.  He should now initialise his repository:

	$ mkdir my-new-workdir
	$ cd my-new-workdir
	$ git init
	$ git pull /path/to/initial.bundle master

(Someone tried to get "git clone /path/to/bundle" to work, but I don't 
know if that work was ever completed, so I assume it was not.)

Whenever he wants to send you an update, he has to do something like this:

	$ git bundle create update.bundle --all --since=2.weeks.ago

and send you the resulting file named "update.bundle".

Hth,
Dscho

-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Re: Using email between 2 developers to keep git repositorie..., Johannes Schindelin, (Tue Jan 22, 9:00 am)
speck-geostationary