This deals : How do I create a new Git branch from an old commit? about creating new branch needed from command line on a repository based on commit-id
pretty much,
git checkout -b ini_commit_ref_branch cf05eed4fbd76e30615e3876ead9ddb7c5593cd8 # eg commit
git push --set-upstream origin ini_commit_ref_branch
But how to achieve same within Github WebUi - as option of creating remote branches we get only on existing branches not from commit hash. Do we have that feature within web-ui ?.
All we see are below icons when we traverse to history of commits against selected branch in repo..