Get the remote origin URL of a Git repository
npm install git-remote-origin-url> Get the remote origin URL of a Git repository
```
$ npm install git-remote-origin-url
`js
import gitRemoteOriginUrl from 'git-remote-origin-url';
console.log(await gitRemoteOriginUrl());
//=> 'git@github.com:sindresorhus/git-remote-origin-url.git'
`
Type: object
#### cwd
Type: string\process.cwd()
Default:
The current working directory.
#### remoteName
Type: string\'origin'`
Default:
The Git remote name.
---