-
Notifications
You must be signed in to change notification settings - Fork 184
Closed
Description
Description
I want to change origin or the Morpheus app repository, e.g. to my for of mbed-os.
Currently what I do is:
Create new application:
$ neo new appname
$ cd appname/mbed-os
$ git remote -v
origin https://github.com/ARMmbed/mbed-os (fetch)
origin https://github.com/ARMmbed/mbed-os (push)
Set new remote origin for my own mbed-os fork.
$ git remote set-url origin https://github.com/PrzemekWirkus/mbed-os.git
$ git remote -v
origin https://github.com/PrzemekWirkus/mbed-os.git (fetch)
origin https://github.com/PrzemekWirkus/mbed-os.git (push)
And update
$ neo update
I want to work on my fork so I can later e.g. sent PR with new feature.
Is there a already a workflow for this type of action?