Github and SourceTree tips
How to write PR.
Good commit.
Fork and Clone private repo.
How to cherry-pick using SourceTree:
Git stash commands to delete, add and show git stash.
Stash list:
$git stash list
Delete stash using the stash id:
$git stash drop stash@{19}
Add stash:
$git stash apply stash@{1}
Show stash:
$git stash show -p stash@{1}