From a53ba2e6676e6119a7926e7fa8cd3223668a4096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Fri, 8 Mar 2024 23:33:34 +0100 Subject: [PATCH] Add push alias --- zsh/.zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 12f2e02..845f53c 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -207,3 +207,4 @@ alias cpr=rsync --archive -hh --partial --info=stats1,progress2 --modify-window= alias mvr=rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1 --remove-source-files alias rg="rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'" alias ag="rg -i --colors 'match:bg:yellow' --colors 'match:fg:black' --colors 'match:style:nobold' --colors 'path:fg:green' --colors 'path:style:bold' --colors 'line:fg:yellow' --colors 'line:style:bold'" +alias push="git add -A && git commit -m '`date`' && git push"