On Jan 18, 2:42 am, Vincent P <ease...@gmail.com> wrote:

> I follow the instructions below to set up a git repository with
> gitosis on my home ubuntu server.  I can connect to the repository
> remotely perfectly and set up a new repository named My_Project.  I
> successfully push the content of My_Project to this repository using
> the remote computer with an SSH key.  Now I want to clone My_Project
> locally onto another directory within the unbuntu server.  How can I
> do this?  The instructions are only to clone remotely.  It appears
> that the clone command allows an "local" option but I haven't been
> able to get it to work.

git clone /path/to/the/repo
or
git clone file:///path/to/the/repo

The first will try to hardlink everything possible, the second will
not.
See `git help clone`.
-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.


Reply via email to