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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.