git commands - salmanbaig8/imp GitHub Wiki
"git log --oneline" - this command will show previous commits to the branch. At this point you need to grab the commit hash of the last commit made or the commit that introduced bugs into production. "git revert HEAD" - this command adds a new commit at the end of the commit chain that cancels the changes of the previous release commit. You will also want to ensure that when git displays the message after this command the git hash will be the same as the git hash from the previous commit. "git log" - run this command to ensure that the changes you have made are correct and intentional. "git push origin master" - this command pushes your bug-free version to the remote repository master.
https://nvie.com/posts/a-successful-git-branching-model/
Renaming a local branch:git branch -m gta_SpringBoot_AzureFunction cache-poc-GTA Forcing cred reset:git config --global credential.useHttpPath true git checkout -b