mirror of
https://github.com/danielauener/git-auf-deutsch.git
synced 2025-03-10 15:49:04 +01:00
21 lines
764 B
Bash
21 lines
764 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
git config --local alias.ahfah init
|
||
|
git config --local alias.derzuetue add
|
||
|
git config --local alias.ahchryde blame
|
||
|
git config --local alias.zieh pull
|
||
|
git config --local alias.stosse push
|
||
|
git config --local alias.kopiere clone
|
||
|
git config --local alias.hole fetch
|
||
|
git config --local alias.veraeschtle branch
|
||
|
git config --local alias.bueche commit
|
||
|
git config --local alias.zuegle rebase
|
||
|
git config --local alias.verglyche diff
|
||
|
git config --local alias.zaemelege merge
|
||
|
git config --local alias.gable fork
|
||
|
git config --local alias.verstoue stash
|
||
|
git config --local alias.ahstryche tag
|
||
|
git config --local alias.rosinepicke cherry-pick
|
||
|
git config --local alias.naeh checkout
|
||
|
git config --local alias.verdruecke squash
|
||
|
git config --local alias.zuestang status
|