[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
|
- From: Wim Jongman <wim.jongman@xxxxxxxxx>
- Date: Fri, 18 May 2012 18:16:01 +0200
- Delivered-to: nebula-dev@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=8iOIPhAbPcEugx5vhdhIOdQ8avK68pKCYkPmugisiBY=; b=j7OX/L+1bhxCQYiywsHvLphEItwBQmYsATJWCne+o2cjaGyMfS28CunM4kDv4CnOfm Nzsn/oxISVQeXjU7aEiiP/iUUFxd5QvsO0lAM5rEh5OSpCzcQELb1fyrvegKt70y+c54 6hpkyijg/T5a5bdQGYhod/BoE7ceuItg56af72VGOaijU9Wmv2fpXVOhAsanemroXNd9 HkXXn+rNym166oH08ePdV3xBjHZD+hI5m3VERzBtBW9ZKmWgCAEda7zQtS6MyKElyLaC gVX2QvFsQY/u3LB0wKKihG4e6aS2Px4m5BZPyC7MWMprrIKMNmBZ5Oxg4m9alpRXZNlc BxDg==
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/