This repo will help you run through many common errors in angular. Each branch has a different challenge. For more detail view Angular-Fix-Errors-Challenge
Step | Command | Description |
---|---|---|
#1 | git checkout <branch-name> | change to branch for challenge |
#2 | git log | look at the history and view the last commit message. |
#3 | q | quits the git log |
Now fix the error
Step | Command | Description |
---|---|---|
#1 | git status | view files that were changed |
#2 | git add . | adds all the files that were listed in git status |
#3 | git commit -m "<your-message>" | commits your work , takes a snapshot of all the files in your repo. |