On a server that I'm working, I find that I have git support. Tired by going with putty to do each commit, I'll like to clone that repository to my machine and push back only when I've done my local work.

Do you know how can I find the name of that git repository? On that linux server I'm a user which has access with ftp and ssh. My webapp is public available on the address: http://linux_server_ip/~linux_user

link|improve this question

"I'll like to clone that repository" - if you don't know what "that" repository is called, how is any one else supposed to know? – Charles Bailey Aug 29 '11 at 7:24
how can I find the name of the repository? – dole doug Aug 29 '11 at 7:26
What repository? How, in practice, are you identifying the repository that you are talking about? – Charles Bailey Aug 29 '11 at 7:30
exactly this is the title of my question – dole doug Aug 29 '11 at 7:54
feedback

2 Answers

up vote 1 down vote accepted

You want to know the path to your repo, not the name.

Assuming that your repo is stored under $HOME/myrepo, you could clone it that way:

git clone http://linux_server_ip/~linux_user/myrepo

But cloning via http, you cannot push back changes to the server, so better use the ssh protocol:

git clone ssh://linux_user@linux_server_ip/myrepo

See the man page of git clone for more information about the different protocols.

Note that you won't be able to push directly to myrepo since it's not a bare repo. To push to master on myrepo, master must not be checked out on myrepo. To achieve this, go to myrepo, create a temporary branch (git checkout -b nocommit), then git push origin master:master and then git checkout master again.

The topic of pushing into a non-bare repo has been discussed several times here:

link|improve this answer
If there's a properly set up HTTP server, then pushing is also possible with HTTP. But i doubt, there is. You should also mention, that for SSH the username is needed. – dunni Aug 29 '11 at 7:41
feedback

The name of the repository is the folder name of the parent folder which contains the repository (since you do your work on that server, it's the folder, which contains the .git folder). But if there's a .git folder, it's not a bare repository, and then push to that repository is very bad practice. You should create a bare repository, and then clone that repository and push to it.

link|improve this answer
In my project folder, I have a .git folder. Can I push to that repository? – dole doug Aug 29 '11 at 7:49
You can, but you shouldn't, because you would overwrite local work, that you would have done in the working directory on the server. – dunni Aug 29 '11 at 8:16
feedback

Your Answer

 
or
required, but never shown

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