github - not valid: is this a git repository? -


my question not this question.
on performing git clone getting error. command using is:

$ git clone "https://gdt.test.com/gitblit/log/?r=mytest.git&h=refs/heads/branch_development" 

on running:

$ git clone "https://gdt.test.com/gitblit/log/?r=mytest.git" 

i error:

fatal: not create work tree dir '?r=mytest'.: invalid argument 

i think need put full url along r , h parameters. because these parameters specify name of repository.

i doing mistake (copying , pasting url). however, on using url:

gdt.test.com/gitblit/r/mytest.git/ 

i getting error:

'fatal: repository 'gdt.test.com/gitblit/r/mytest.git/'; not found.  

how copy correct url gitblit summary page?

problem: copying & pasting log webpage url , expecting able clone repository generated html.

the proposed successful answer has sufficiently scrubbed url hides solution you: missing repository serving path in url, /r/ or /git/.

using url example, correct syntax should be:

git clone https://gdt.test.com/gitblit/r/mytest.git

the summary page provides generated urls copy & paste functions avoid these type of errors.

enter image description here