Skip to content

01 Start with angular seed

Dave Strus edited this page Aug 13, 2015 · 1 revision

Clone the angular-seed project

$ git clone --depth=1 https://github.com/angular/angular-seed.git notely
$ cd notely

Remove its .git history, and initialize your own git repository

$ rm -rf .git
$ git init
$ git add .
$ git commit -m "Initial commit using angular-seed"

Create a GitHub repo

Create a new repository in your GitHub account. Follow the instructions to add this repo as a remote for your local project, and push to that remote.

$ git remote add origin [email protected]:[YOUR GITHUB USERNAME]/notely.git
$ git push -u origin master