InterviewSolution
Saved Bookmarks
| 1. |
Delete Branches |
|
Answer» Once the work is done on a branch and merged with the Main branch, one can delete the branch. The following command is used to delete branches: git delete -d <branch_name>
To delete remote branches, use the following command: git push origin --delete <branch_name> |
|