Skip to content

Commit

Permalink
docs(README): add alternative git clone method
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Oct 29, 2014
1 parent 6ca94d4 commit de30ee9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ git clone https://github.com/angular/angular-seed.git
cd angular-seed
```

If you just want to start a new project without the angular-seed commit history then you can do:

```bash
git clone --depth=1 https://github.com/angular/angular-seed.git <your-project-name>
```

The `depth=1` tells git to only pull down one commit worth of historical data.

### Install Dependencies

We have two kinds of dependencies in this project: tools and angular framework code. The tools help
Expand Down

0 comments on commit de30ee9

Please sign in to comment.