Renaming a branch with Git
๐ป๐ช Spanish
1.- Enter inside the branch that you want to rename with git checkout command <branch's_name_to_be_rename>
git checkout stable
2.- Execute git branch -m <branch's_name_new> command to change the name of the branch. You can see the chan...
crisprogramming.hashnode.dev1 min read