This question is in reference to Atlassian Documentation: Checking out code
When specifying a directory to check out to, is the code checked out into a folder named after the repo IN that directory, as git usually does it? i.e. if I have a repo named 'code', and specify a checkout directory of /var/www/, will the code end up in /var/www/code/* ? or as /var/www/* ?
Hi,
if you do a
git clone https://owolf@example.com/scm/code/example.git
you will find your code in a subfolder which is named like your repository name (in this case /tmp/example) of your current directory (/tmp).
To checkout your Repository into another folder you can execute this :
git clone https://owolf@example.com/scm/code/example.git /tmp/my-code
Now you will find your code in /tmp/my-code
Greetings,
Oliver
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.