1
0
mirror of https://github.com/namibia/tips.git synced 2024-06-10 22:22:25 +00:00

Merge pull request #105 from TheBox193/naming-remote

Clarify naming a remote
This commit is contained in:
hemanth.hm 2016-06-30 23:07:42 +05:30 committed by GitHub
commit 156cbd0b31
2 changed files with 2 additions and 2 deletions

View File

@ -861,7 +861,7 @@ git push -f <remote-name> <branch-name>
## Adding Remote name ## Adding Remote name
```sh ```sh
git remote add origin <remote-url> git remote add <remote-nickname> <remote-url>
``` ```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. --> <!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->

View File

@ -378,5 +378,5 @@
"tip": "git push -f <remote-name> <branch-name>" "tip": "git push -f <remote-name> <branch-name>"
}, { }, {
"title": "Adding Remote name", "title": "Adding Remote name",
"tip": "git remote add origin <remote-url>" "tip": "git remote add <remote-nickname> <remote-url>"
}] }]