vote up 1 vote down star
1

Executing the command git clone git@github.com:whatever creates a directory in my current folder named whatever, and drops the contents of the git repo into that folder:

/httpdocs/whatever/public

My problem is that I need the contents of the git repository cloned into my current directory so that they appear in the proper location for the web server:

/httpdocs/public

I know how to move the files after I've cloned the repo, but this seems to break git, and I'd like to be able to update just by calling git pull. How can I do this? And thank you!

flag

2 Answers

vote up 5 vote down check

Option A:

git clone git@github.com:whatever folder-name

Option B:

move the .git folder, too.

Better yet:

Keep your working copy somewhere else, and create a symbolic link.

link|flag
I hadn't thought of your 'Better yet' option, and I like it although I'm not sure why. What are the advantages of this? – BigDave Mar 17 at 14:02
It probably doesn't provide any advantage right now, but it might save you a lot of trouble if you decide to move stuff around some day. – Can Berk Güder Mar 17 at 14:15
vote up 2 vote down

When you move the files to where you want them, are you also moving the .git directory? Depending on your OS and configuration, this directory may be hidden.

It contains the repo and the supporting files, while the project files that are in your /public directory are only the versions in the currently check-out commit (master branch by default).

link|flag

Your Answer

Get an OpenID
or

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