// Create a new branch
git branch my-joke
// Check out all the branches
git branch
// Switch branch
git checkout new-branch-name
// Stash Change
git add file-name
git commit -m "Commit-Title-Name"
git push --set-upstream origin destination-branch-name

Untitled