Git- some how a single branch having two names created how do i make it single
问题 I just tried to rename the branch with following command git branch -m <oldname> <newname> my older branch name is feature/AAM-443 and this branch is already merged with parent now when i renamed it with feature/AAMN-443 and push it to remote then the branch in network is showing *<commit id> feature/AAM-443, feature/AAMN-443 and if i do some commit to feature/AAMN-443 then graph is like * <new-commit id> feature/AAMN-443 | | * <old-commit id> feature/AAM-443 what is happening i am wondering