Looking for adding two repo on same git, or say adding another repository other than origin in the same project.
1. Add first repo:
$ git add remote origin master <project repo url>
$ git push -u origin <branch>
2. Adding Second repo
$ git remote add <user> <project repo url>
$ git push <user> <branch>
1. Add first repo:
$ git add remote origin master <project repo url>
$ git push -u origin <branch>
2. Adding Second repo
$ git remote add <user> <project repo url>
$ git push <user> <branch>
No comments:
Post a Comment