Question 1 - Suvedhaaarul/73772127152-Assignment-1 GitHub Wiki
1. Illustrate the following GIT operations using local and remote (Github) repositories with the screenshots of your demonstration.
Commands
git clone - This command is used to clone the remote repository to local computer.
git push - This command is used to push the changes from local to remote repository.
git pull - This command is used to pull the changes from remote to local repo that are made by other developers.
git commit - This command is used to move the changes to staged area.
git log - This command is used to view the commits that are made.
git status - This command is used to view the status of the files(Staged,unstaged,modified..).
git reset - This command is used to reset the changes that are after a commit.
git stash - This command is used to temporarily save the changes in local that can be used afterwards
Pull Requests
Branching - git branch and git checkout - Used to move the haed from one branch to another.
Merging and Merge conflicts
Branch Protection rules