0
You can use two ways to get the address:
- Execute command below:
$ git remote -v
- Opens the configuration file in the directory
.git
:
$ cd .git
$ more config
One of the two solutions will solve your problem.
0
1
You can use two ways to get the address:
$ git remote -v
.git
:$ cd .git
$ more config
One of the two solutions will solve your problem.
Browser other questions tagged git github
You are not signed in. Login or sign up in order to post.
tried a
git remote -v
to see where the repository is connected?– Ricardo Pontual