Beginner Vocabulary #git #version-control #phrasal-verbs #developer-english

Git & Version Control Phrasal Verbs

5 exercises — the phrasal verbs developers use every day when talking about Git: checking out, pulling, pushing, branching, and reverting.

Git phrasal verb cluster
  • check out a branch — switch to it (git checkout / git switch)
  • pull in changes — fetch & merge from remote (git pull)
  • push up to remote — send commits to origin (git push)
  • branch off from main — create a new branch (git checkout -b)
  • merge in a PR — incorporate a branch (git merge)
  • revert back — undo commit(s) safely (git revert)
0 / 5 completed
1 / 5
A developer says: "I need to _____ the feature branch before I can start working on the bug fix."
Which phrase completes the sentence correctly?