InterviewSolution
Saved Bookmarks
| 1. |
Git Branch |
Answer»
For creating a new branch, the following command is used : git branch <branch_name>For example - git branch demoThis command creates a new branch named demo from the Main branch:
|
|