Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k-koech/notes
https://github.com/k-koech/notes
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/k-koech/notes
- Owner: k-koech
- Created: 2021-06-15T15:26:45.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-11T04:44:03.000Z (about 2 years ago)
- Last Synced: 2024-12-24T01:47:53.482Z (about 2 months ago)
- Size: 47.9 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# If the local is very old
- npm uninstall -g @angular/cli
- npm cache verify
- npm install -g @angular/cli@latest
## Then in your Local project package:
- rm -rf node_modules dist
- npm install --save-dev @angular/cli@latest
- npm i
- ng update @angular/cli
- ng update @angular/core
- npm install --save-dev @angular-devkit/build-angular
- You have to create a .gitignore file and add node_modules/
inside it to tell git not to track them as they are third party code.### Updating gh-pages with master
- $ git add .
- $ git status // to see what changes are going to be commited
- $ git commit -m 'Some descriptive commit message'
- $ git push origin master- $ git checkout gh-pages // go to the gh-pages branch
- $ git rebase master // bring gh-pages up to date with master
- $ git push origin gh-pages // commit the changes
- $ git checkout master // return to the master branch