Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 382 Bytes

git-quizes.md

File metadata and controls

12 lines (8 loc) · 382 Bytes
  1. What happens if you run this command from your master branch?
git checkout -b beta-test
  • a. a. A new branch called beta-test will be created and switched to.

  • b. The beta-test branch will be checked out of the current commit.

  • c. The beta-test branch will be checked out and deleted.

  • d. The beta-test branch will be merged with the master branch