I'm using the following Git command in order to create a new remote branch:
git push origin origin:refs/heads/new_branch_name
I wish that the new branch will start from an old commit,
How can I do that? (I've tried some different methods, though failed)
Thank you.