there. I made a mistake in Git. I had a code in Development branch, on which i was working And i needed to use git command
git branch newBranch
git checkout newBranch
git add .
git commit -m 'something'
git push origin newBranch
To push my changes from newBranch And instead of this i excedently wrote
git add .
git commit -m 'something'
Is there a way how to send it from newBranch ?
I tried to move from Development branch to newBranch and run same commands, but it didn't work:(