Going Back to My Roots and Finding my Love of Angular Again! MEAN STACK
The source code can be found at https://github.com/lisagorewitdecker/Angular2023.git.
git clone
Create a Feature Branch and Push To It. You Can Do a Remote Commit With the Following:
git checkout main
git pull
git checkout -b your_feature_branch_goes_here
Make your edits
This Command Will Show You New Files and Confirm What Branch You're On:
git status
To See Files Which Have Been Modified or Changed Use the Command Below:
git diff
In Order to Add Files and Stage These Files for Commit:
git add "XYZ" for any new files, e.g. "XYZ".
You may also use the command:
git add .
To Commit:
git commit --all
git push origin your_feature_branch_goes_here
Then navigate to the pull requests page at github.com within the repository and choose New pull request in order to create a request to merge your feature branch into main.
When you are ready to Merge your feature branch into master, click the Merge button and let the github website perform the actual change to main. You can then close the source branch on github and delete your local branch with:
git checkout main && git pull && git branch -d your_feature_branch_goes_here
Try to make your feature branch as short and descriptive as you can be. If you have to refactor due to your change(s), create one feature branch for refactoring, another that will build on it.
Angular 15, Node v19.5.0, npm v9.3.1 and hopefully full MEAN
1.0
Lisa Gorewit-Decker