From e392883589ef37d5b9b8f7068c6d491faa163694 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 24 May 2023 05:59:43 +0200 Subject: Fixed some content --- content/notes/git-push-multiple-origins.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'content/notes') diff --git a/content/notes/git-push-multiple-origins.md b/content/notes/git-push-multiple-origins.md index 7b12148..228f857 100644 --- a/content/notes/git-push-multiple-origins.md +++ b/content/notes/git-push-multiple-origins.md @@ -8,8 +8,7 @@ draft: false Sometimes you want to push to multiple origins at once. This is useful if you have a mirror of your repository on another server. You can do this by adding -multiple push urls to your git config. After this you can push to all origins -at once by using `git push --all`. This is a shorthand for command above. +multiple push urls to your git config. This is a shorthand for command above. ```sh git config --global alias.pushall '!sh -c "git remote | xargs -L1 git push --all"' -- cgit v1.2.3