Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AngularShopTutorial
# AngularTutorial

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.3.2.

Expand All @@ -25,3 +25,19 @@ Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protrac
## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

<hr/>

# Exercice

## Setup:

- Fork the project, and clone it
- create your own dev branch `git checkout -b dev`
- launch `npm install` to download dependencies

## Sync with forked repository:

- use command `git fetch upstream` to retrieve master branch from forked repository. It will create a local upstream/master branch.
- go to your local master branch: `git checkout master`
- merge the upstream master to your local master: ` git merge upstream/master`. You're up to date!
Loading