Create a New Angular Project

When you created a new project with CLI, you should have a new git repository. incase you have not, just run these commands:
$ cd C:\apachefriends\xampp\htdocs\angular2\MYNOTES
$ ng new my-tutorial
$ cd my-tutorial
$ ng serve

GO TO BROWSER:  http://localhost:4200.

UPDATE: if you need to upgrade your angular CLI try this:

npm uninstall -g @angular/cli
npm install -g @angular/cli@latest

you might get his prompt:

? Would you like to add Angular routing? Yes

? Which stylesheet format would you like to use?

Thats all you need, you should have your first angluar project, very easy right?