.
This commit is contained in:
parent
bb33b09de8
commit
f8fe365605
1 changed files with 5 additions and 1 deletions
|
@ -316,8 +316,12 @@ _alias() {
|
|||
git clone --recurse-submodules --depth=1 "git@git.k4li.de:$1" "$2"
|
||||
fi
|
||||
}
|
||||
alias grs="git restore --staged"
|
||||
alias gd="git diff"
|
||||
alias ga="gd $1 && git add"
|
||||
ga() {
|
||||
git diff "$1" &&
|
||||
git add "$1"
|
||||
}
|
||||
alias gp="git pull --recurse-submodule"
|
||||
alias gms='git maintenance start'
|
||||
alias gsu="git submodule foreach git pull && git add . && git commit -m ' updated 📌submodules' && echo '-- Committed changes, pushing now..' && sleep 1 && git push"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue