Junior
What operations do you usually perform in Git?
sobes.tech AI
Answer from AI
git clone <url>: Cloning a repository.git add <file>/git add .: Adding changes to the staged area.git commit -m "<message>": Saving changes with a message.git status: Viewing the current state of the repository.git log: Viewing commit history.git push origin <branch>: Pushing changes to the remote repository.git pull origin <branch>: Fetching changes from the remote repository.git branch: Viewing the list of branches.git checkout <branch>: Switching between branches.git merge <branch>: Merging branches.git rebase <branch>: Rebase a branch.git stash: Temporarily saving uncommitted changes.git fetch: Fetching metadata from the remote repository.