how to go back and create branch in git code example
Example 1: create new branch git
$ git checkout -b [name_of_your_new_branch]
Example 2: git create branch with specific commit
# Create a new branch from previous commit's hash
git branch develop 04c900c
# Push the new branch to remote repository
git push --set-upstream origin develop
# Checkout the new branch
git checkout develop