HTML

CSS:

GIT

GIT FLOW Steps

  1. Add: git add -A
  2. Commit: git commit -m "Commit messages should be short descriptive"
  3. git pull origin main: It is a good habit to always pull the base branch before pushing up any code.
  4. Push changes to Branch git push origin [branch]
  5. Open Pull Request on Github
  6. Merge changes to Main Branch
  7. Return to Bash and do: git checkout main "+" git pull origin main
  8. Return to Github to delete the merged branch
  9. Close Github Issue

List of PR commands :

  1. git add -A
  2. git commit -m “updated project”
  3. git pull origin main
  4. git push origin [branch]

JavaScript