From 4170a6b4695376f296b3ec54009ad65e02485642 Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Fri, 3 Oct 2025 14:49:24 +0200 Subject: [PATCH] chore: fix wrong -u flag to git push command in .justfile --- .justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.justfile b/.justfile index f647b46..5d8a48e 100644 --- a/.justfile +++ b/.justfile @@ -2,5 +2,5 @@ default: just --list sync_remotes: - git push -u codeberg.org next - git push -u github.com next + git push codeberg.org next + git push github.com next