Another simple question on how to handle in github following up on this: should I do a git fork then branch or just a git branch
I want to use an app that I have as
You can
For example, let say your current repository is git@github.com:me/current.git
and the new one is git@github.com:me/new.git
.
$ git clone git@github.com:me/current.git local-copy
$ cd local-copy
$ git remote add new-repo git@github.com:me/new.git
$ git push new-repo master