###### Table of Contents
- [[]]
- [[]]
- [[]]
- [[#Push git cloned repository to your own on GitHub]]
```zsh
git remote -v
```
## Push git cloned repository to your own on GitHub
### Method 1
Update the existing origin url:
```zsh
git remote set-url origin NEW_URL
```
### Method 2
First, remove the remote repository associated using `git remote rm origin`.
```zsh
git remote rm origin
```
Add new origin:
```zsh
git remote add origin dance2die/es6
```
#### More info
[Some website](https://test.com)
___
**Tags**: #git-remote