/web-development-sessions

Learning web application development with Thruskills

Primary LanguageHTML

Web Development With Thruskills

Intro to git & github

git clone <repository url>

you will go to the local repository folder in your machine make changes in the files & folders then you need to push these changes to the remote server

git add .

  • adding our changes to the local respository

git commit -m "commit message"

  • we are writing those changes to the local repository
  • so that they can be tracked

git push origin master

  • now we want the local changes to be saved in the remote/origin server
  • we will push those changes to remote server in master branch

git pull origin master

  • to get the latest changes from the remote repository