I have a problem with using git. I created a new repository "test". Then I created the branch "master", put some files in there, committed and pushed it. Everything works fine. Now I create a new branch with
git branch release_test
git checkout release_test
git commit -m "new release"
git push
And two new branches are created. One that is called "release_test", and another one that is called "elease_test". I am 100% sure that there are no spelling mistakes or something like that. I tried this twice with completely new repositories. Does anyone have an idea why this is happening?