devkenami / booking-system

0 stars 0 forks source link

THINGS TO DO

ACCOMPLISHED

GIT COMMANDS

Before doing changes

  1. git checkout master: go to master branch
  2. git status: should be no changes on master branch before pulling codes
  3. git pull: pull changes from github repo before doing anything

Doing Changes (Current)

  1. Do changes
  2. create a new branch git branch {new-branch-name}
  3. check the what files is modified before pushing on github

After doing changes

  1. git add . add all modified branch on git
  2. git commit -m "message here" commit the changes and add a brief description to your changes
  3. push the changes
  4. create a pull request
  5. add a reviewer
  6. If code changes is approve do sqaush and merge
  7. after merging the code `delete the branch