From c6ff27f8e24a97c1380e68bfb1c1e7f8dbe6c992 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Thu, 2 May 2024 22:38:36 +0100 Subject: [PATCH] Add pushall script --- dotfiles/.bashrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc index 80e130fc..b6bf034c 100644 --- a/dotfiles/.bashrc +++ b/dotfiles/.bashrc @@ -52,4 +52,10 @@ ncs() { nextcloudcmd -u $USER --path "/SYNC" ~/Nextcloud/SYNC "https://$server" } +pushall() { + git add -A + git commit -m "$@" + git push +} + set completion-ignore-case On