git pull?git pull on a branch that is behind the remote by 3 commits. What will you see in the terminal?git pullWhen you run git pull and your branch is behind, Git fetches the new commits and merges them. The output shows the commit range updated and files changed.
git pull do internally?git pull does internally.git pull is a shortcut for git fetch followed by git merge. It downloads remote changes and merges them into your current branch.
git pull?git pull. What error message will Git show?git pullIf your local changes conflict with incoming changes, Git prevents the merge to avoid overwriting your work. It asks you to commit or stash first.
Stashing saves your local changes temporarily. Then you pull remote changes safely. Finally, you reapply your changes with git stash pop.
git pull?git pull --rebase fetches remote changes and then reapplies your local commits on top, avoiding merge commits and keeping history linear.
