Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
Added future update support to README.
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Jun 19, 2014
1 parent 513191c commit 0030cfc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,35 @@ and summarized under [Releases].
[Releases]: https://github.com/razor-x/ruby-gem/releases
[The Unlicense]: http://unlicense.org/UNLICENSE

#### Add future update support

If you want to merge in future updates from this skeleton and have your own origin,
set up a separate branch to track this.

````bash
$ git remote rename origin upstream
$ git branch ruby-gem
$ git branch -u upstream/master ruby-gem
````

Then add an origin and push master

````bash
$ git remote add origin [email protected]:your_username/your_gemname.git
$ git push -u origin master
````

Now, the `ruby-gem` branch will pull changes from this project,
which you can then merge into your other branches.

If you later clone your repo you will need to create the update branch again.

````bash
$ git remote add upstream https://github.com/razor-x/ruby-gem.git
$ git fetch upstream
$ git checkout -b ruby-gem upstream/master
````

## Installation

Add this line to your application's Gemfile:
Expand Down

0 comments on commit 0030cfc

Please sign in to comment.