I'm trying to clear up git cloning my remote repository to my Document Root.
Git clone makes a directory in Document Root with the name of the remote repository, and then the files like index.html.
I need a git clone that pulls the remote files like index.html straight into the Document Root and doesn't add the remote repository name.
E.g. Document/Root/index.html correct. Document/Root/remoteRepositoryName/index.html wrong, but is what git clone does.
To clone into the current directory, instead of creating one, try adding a period after the clone command. For example:
git clone <clone url> .
However note the current directory MUST be empty.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.