An Advance course on Backend engineering using JavaScript and Node.js Topics: Nodejs main modules Authentication/Authorization Frameworks: Express, Nestjs Database: MySql, MongoDB
-
Init git/ creating and cloning a repository
-
add files // git add (location of the file or . for all files that have local changess)
-
commit your files // git commit -m'the message for the commit. should descriptive'
-
push changes // git push
-
pull online updates // git pull // to download online changes that are not available in your machine
-
create a branch // git branch branch_name
-
checkout // git checkout branch_to_check_into
-
create a branch and check into it // git checkout -b branch_name
-
clone existing repository // git clone gitrepository_url eg: https://github.com/stanley-zarttech/Backend_Course.git