-
Notifications
You must be signed in to change notification settings - Fork 178
Installation
MarkMarine edited this page Dec 30, 2013
·
1 revision
Yeoman generator for ultimate-seed can be used to clone the seed project.
$ npm install -g yo
$ npm install -g generator-ultimate
$ yo ultimate
Download ultimate-seed
and install dependency modules:
$ git clone https://github.com/pilwon/ultimate-seed.git ultimate-seed
$ cd ultimate-seed
$ npm install && bower install
Now create seed
branch that tracks remote branch ultimate-seed/master
:
$ git remote add seed https://github.com/pilwon/ultimate-seed.git
$ git fetch seed
$ git checkout -b seed seed/master
Push a copy of seed
to origin/seed
:
$ git push origin seed
Merge seed
to master
branch:
$ git checkout master
$ git merge seed
$ npm install && bower install
Resolve merge conflicts then push to origin/master
:
$ git push