convert mercurial bitbucket to git on github code example
Example 1: add remote in git
git remote add origin [email protected]:portfolio/space.space_name.git#set a new remotegit remote -v#Verify new remoteorigin [email protected]:portfolio/space.space_name.git (fetch)origin [email protected]:portfolio/space.space_name.git (push)
Example 2: how to create branch in github using git bash
$ git checkout -b [name_of_your_new_branch]
Example 3: how to get stashed on git
git stash pop or
git stash apply