Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 823 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 823 Bytes

An Advance course on Backend engineering using JavaScript and Node.js Topics: Nodejs main modules Authentication/Authorization Frameworks: Express, Nestjs Database: MySql, MongoDB

  1. Init git/ creating and cloning a repository

  2. add files // git add (location of the file or . for all files that have local changess)

  3. commit your files // git commit -m'the message for the commit. should be descriptive'

  4. push changes // git push

  5. pull online updates // git pull // to download online changes that are not available in your machine

  6. create a branch // git branch branch_name

  7. checkout // git checkout branch_to_check_into

  8. create a branch and check into it // git checkout -b branch_name

  9. clone existing repository // git clone gitrepository_url eg: https://github.com/stanley-zarttech/Backend_Course.git