Dear Sirs, there is a problem with a commit in git (specifically, in a gitlab)
See what I want to do:
There is a project, I make myself a local copy ( git clone )
Then, I want to make changes and commit and push them, but not to the master , but to the new branch .
When I make a change, everything is fine. when I try to push , I get an error. This is a short version.
Here are the details:
1) do git clone
2) make changes
3) through the WEB-interface of gitlab I make a new brunch. Called TstBranch
4) do git commit -m "Что я сделал - подробный комментарий"
5) check git status - beauty! You can give a letter. All files are there and everything is in place. It is this file set that I want to push through to the server.
6) do git push -u origin TstBranch
getting an error
c:\Projects\TradingG0_Solution>git push -u origin TstBranch error: src refspec TstBranch does not match any. error: failed to push some refs to 'https://tst@GitLab0.junecat.ru/konst/TradingG0_Solution.git' For reliability, I attach two screenshots, which show all these commands that I performed and their results.
How would I do all the same commit and push to the correct branch? 
