Saved Bookmarks
| 1. |
What is the GIT command to create a branch? |
|
Answer» Answer: Explanation: The git branch command lets you CREATE, list, rename, and delete branches. It doesn't LET you switch between branches or put a forked history back together again. For this reason, git branch is tightly integrated with the git checkout and git merge COMMANDS. |
|