How to find the git address of an already created repository?

Asked

Viewed 815 times

0

I started working now and the company uses git to update its system, but I’m alone in the IT department as I get the address of that repository I’ve tried to get the msm address I use for git clone and the following error appears

segue o erro

  • tried a git remote -v to see where the repository is connected?

1 answer

1


You can use two ways to get the address:

  1. Execute command below:
$ git remote -v
  1. Opens the configuration file in the directory .git:
$ cd .git
$ more config

One of the two solutions will solve your problem.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.