Git, for me! Mostly just aliases
| Alias | Action |
|---|---|
| a | add |
| co | checkout |
| ct | commit |
| some | !git fetch -a && git pull |
| ps | push |
| psf | push --force-with-lease |
| s | status |
| Alias | Action |
|---|---|
| st | stash |
| stp | stash pop |
| stc | stash clear |
| Alias | Action |
|---|---|
| dfm | diff origin/master |
| l | log -p --color |
| l1 | log -1 HEAD |
| Alias | Action |
|---|---|
| rb | rebase -i origin/master |
| rba | rebase --abort |
| rbc | rebase --continue |
| Alias | Action |
|---|---|
| ignore | update-index --assume-unchanged |
| unignore | update-index --no-assume-unchanged |