mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-08 18:19:37 +01:00
10 lines
221 B
Markdown
10 lines
221 B
Markdown
|
If you have an existing repository and want to add a new remote you can use this command:
|
||
|
```
|
||
|
git remote add <name> <url>
|
||
|
```
|
||
|
Example:
|
||
|
```
|
||
|
git remote add origin git@github.com:Asocia/til.git
|
||
|
git push -u origin master
|
||
|
```
|