diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-09 20:10:46 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-09 20:10:46 +0100 |
commit | 19c1942757f07387b95db3ddbc39d9b561d5b51d (patch) | |
tree | 2e5c8bc42752dc568ede5a1b7fa1f2ff48de0cd6 /.config/shell/aliasrc | |
parent | 09928e2580256fde54d22f05da4d9f825487ba1e (diff) |
Fix cua alias
Diffstat (limited to '.config/shell/aliasrc')
-rwxr-xr-x | .config/shell/aliasrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/shell/aliasrc b/.config/shell/aliasrc index cc057fc..0b29163 100755 --- a/.config/shell/aliasrc +++ b/.config/shell/aliasrc @@ -42,7 +42,7 @@ alias \ # Pushing to multiple git repositories alias gua="git remote | xargs -L1 git push --all" -alias cua="config remote | xargs -L1 config push --all" +alias cua="config remote | xargs -L1 git --git-dir=$HOME/dotfiles/ --work-tree=$HOME push --all" # Doas smooth transition alias sudo="doas" |