From 34bad7e66143abee60d72f7db9c0a1481a62b17e Mon Sep 17 00:00:00 2001 From: javalsai Date: Sun, 19 Apr 2026 00:22:12 +0200 Subject: [PATCH] initial repo --- .gitignore | 1 + justfile | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100644 justfile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..64bcebf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/repo diff --git a/justfile b/justfile new file mode 100644 index 0000000..f61480e --- /dev/null +++ b/justfile @@ -0,0 +1,11 @@ +alias p := push +alias l := pull + +remote_repo := "tuxcord.net:/var/www/pacman.tuxcord.net/repo/" + +push: + rsync -rltDP repo/ {{ remote_repo }} + +pull: + mkdir repo + rsync -rltDP {{ remote_repo }} repo/