How do I get the full url of a GIT repository in TFS?
Got the repo name and project name from my colleague.
How do I get the entire url of a GIT repository in TFS? How does this happen?
Can I directly use url in browser from internet?
+3
spiderman
source
to share
1 answer
Yes, you can use the url directly when opening the repo in the web portal.
A more general approach is to use the Clone command in the upper right corner. You have to either select http or ssh url and just hit the copy command.

As for the format, the url will look like this:
http://yourtfsserver/[CollectionName]/_git/[gitRepoName]
See the answer from bryanmac in this question for more details: Connect to git repository in TFS or Visual Studio Online
+4
PatrickLu-MSFT
source
to share