##Renaming a GIT Branch
Step1: $ git branch -m <old_name> <new_name> - This will rename the branch locally
Step2: $ git push origin :<old_name> - Deletes the old branch remotely
Step3: $ git push --set-upstream origin <new_name> - Push the renamed branch to remote and update the upstream