I want to know how to simply publish over http = much like Mercurial's hg serve! On the Windows/work box do this:
git serve
and then on the Linux box SIMPLY go:
git clone http://project project
finished.
I want to know how to simply publish over http = much like Mercurial's hg serve! On the Windows/work box do this:
git serve
and then on the Linux box SIMPLY go:
git clone http://project project
finished.
Navigate into your project and start git-daemon with the following switches:
cd project
git daemon --reuseaddr --base-path=. --export-all --verbose
This tells git-daemon to serve up all projects inside the current directory (which I assume is the project directory containing the .git/ folder). It also tells it to re-use the same address if you shut it down and start it back up too fast.
You can put this into a batch script with an easy to remember name like "gitserve", so you don't need to type it all out again. (or see the bottom of this answer for another approach)
Also, git-daemon uses the git:// protocol for transport, so on the linux box you need to do:
git clone git://123.456.789.111/.git project
As suggested in some of the comments; in recent versions of Git you can add an alias to the Git config, instead of using a batch script: http://git.wiki.kernel.org/index.php/Aliases#Serve_repo_on_the_spot
Rather than write your own batch script, use gitjour. It knows how to start git daemon correctly and will broadcast the clone URL via mDNS so you can do gitjour show
on the linux box and copy and paste.
Also a good article with an overview of gitjour and a number of other similar tools from Dr. Nic, What is *jour and why they are killer apps for RailsCamp08.
If you start git deamon in background mode, it may not work with --verbose option.