Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [nebula-dev] Welcome Hallvard Traetteberg as a new technology.nebula Committer

Hi Hallvard,

Yes it does.

First merge the changes from the github eclipse/nebula repository back
in your fork:

$ cd your/local/clone

// Assigns the original repo to a remote called "upstream"
$ git remote add upstream https://github.com/eclipse/nebula.git

//Fetches any new changes from the original repo
$ git fetch upstream

// Merges any changes fetched into your local working files
$ git merge upstream/master

// Push the changes back to your fork
$ git push origin master

Try this first.

Regards,

Wim

http://help.github.com/fork-a-repo/


Back to the top