I am trying to host a git repository. I am now able to clone git repo on any machine within the network with:

git clone gituser@192.168.0.133:/home/gituser/repositories/gitosis-admin.git

But I need to give absolute path of the repo location.

Is it possible to clone without specifying repo path? like for e.g.

git clone gituser@192.168.0.133:gitosis-admin.git

Thanks in advance,

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You should be able to clone using a path relative to your home directory on the remote machine. So, for example, git clone gituser@192.168.0.133:/home/gituser/repositories/gitosis-admin.git could become git clone gituser@192.168.0.133:repositories/gitosis-admin.git.

link|improve this answer
Thanks Joseph!!! But there is no way to avoid specifying "repositories" as well? – Vaman Kulkarni Aug 17 '10 at 14:21
I found a workaround like I created a softlink in / to ~/repositoris/gitosis-admin.git and now it works with git clone gituser@192.168.0.133:/gitosis-admin.git command. Thanks – Vaman Kulkarni Aug 17 '10 at 14:32
I'd recommend doing a softlink in ~ to ~/repositories/gitosis-admin.git, so that you can do git clone gituser@192.168.0.133:gitosis-admin.git. The problem with linking in / is that it pollutes the root on a system that may have multiple users (and that's why you have a home directory in the first place). – Joseph Spiros Aug 17 '10 at 14:35
Thanks Joseph for your suggestion. – Vaman Kulkarni Aug 17 '10 at 15:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.