Question

I'm running this command:

git svn clone https://svn.corp.company.com/svn/results -T trunk -b branches -t tags 

And this creates a directory named "results" that it puts things in. I don't want that to happen. I want it to place the files directly in the directory I'm in or a directory name of my choice. How do I do that?

I'm reading this documentation, and I don't see anything that allows me to do that.

Was it helpful?

Solution

Add a dot behind your command, like so:

git svn clone https://svn.corp.company.com/svn/results -T trunk -b branches -t tags .

OTHER TIPS

You simply add the path of the directory you want to the end of the command.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top