git_operations
git_operations
git clone <repo-url> - Copy (download) a repository from GitHub to your local machine.
git commit -m "your message" - Save a snapshot of staged files with a message.
git pull - Fetch and merge changes from the remote to your local branch.
git merge <branch> - Merge another branch into your current branch.
git remote add origin <repo-url> - Link your local repo to a remote GitHub repo.
git reset --hard <commit-id> - Reset your code to a specific previous commit.
git stash - Temporarily save changes you don't want to commit yet.