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:
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. As suggested in some of the comments, in recent versions of Git you can add an alias to the Git config:
Once that's done on the server (your Windows box), you can do:
git-daemon uses the git:// protocol for transport, so on the client (your Linux box), you would need to do:
|
|||||||||||||||||||||
|
|
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 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 just want to expose the repository with a web browser
|
|||||||||||
|
|
Here is an alternative way. You will need python installed.
(just create an alias in your gitconfig) Now you can pull the repo with PS: when usingthe git daemon solution you can set |
||||
|
|