git

Check the remote origin URL of a git repository

The following command will check what the remote origin URL has been set to for the current working git repository.

$ git remote -v
origin git@github.com:codybonney/project.git (fetch)
origin git@github.com:codybonney/project.git (push)

more Git posts