| Command | Description |
|---|---|
git config -l |
Show config list |
git config --global user.name |
Global user |
git config user.name |
Local user |
git clone https://[TOKEN]@github.com/[REPO-OWNER]/[REPO-NAME]| Command | Description |
|---|---|
git stash drop |
Drop a stash |
git stash clear |
Clear all stashes |
git stash branch <BRANCH_NAME> <STASH_ID> |
Create branch from stash |
Example:
git stash branch branch_1 stash@{1}