aboutsummaryrefslogtreecommitdiff
path: root/content/posts/2023-05-10-push-to-multiple-origins-at-once-in-git.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/posts/2023-05-10-push-to-multiple-origins-at-once-in-git.md')
-rw-r--r--content/posts/2023-05-10-push-to-multiple-origins-at-once-in-git.md15
1 files changed, 11 insertions, 4 deletions
diff --git a/content/posts/2023-05-10-push-to-multiple-origins-at-once-in-git.md b/content/posts/2023-05-10-push-to-multiple-origins-at-once-in-git.md
index 7d22950..3d07072 100644
--- a/content/posts/2023-05-10-push-to-multiple-origins-at-once-in-git.md
+++ b/content/posts/2023-05-10-push-to-multiple-origins-at-once-in-git.md
@@ -1,18 +1,25 @@
1--- 1---
2title: Push to multiple origins at once in Git 2title: Push to multiple origins at once in Git
3url: push-to-multiple-origins-at-once-in-git.html 3url: push-to-multiple-origins-at-once-in-git.html
4date: 2023-05-10 4date: 2023-05-10T12:00:00+02:00
5draft: false 5draft: false
6--- 6---
7 7
8This is a quick one. I use my personal Git server as my main server, and I use GitHub only as a mirror. As a result, I constantly forget to push to GitHub. 8This is a quick one. I use my personal Git server as my main server, and I use
9GitHub only as a mirror. As a result, I constantly forget to push to GitHub.
9 10
10To push to multiple origins at once in Git, you can create a custom Git alias or use a script to automate the process. Here's an example of how you can achieve this using a Git alias: 11To push to multiple origins at once in Git, you can create a custom Git alias
12or use a script to automate the process. Here's an example of how you can
13achieve this using a Git alias:
11 14
12```sh 15```sh
13git config --global alias.pushall '!sh -c "git remote | xargs -L1 git push --all"' 16git config --global alias.pushall '!sh -c "git remote | xargs -L1 git push --all"'
14``` 17```
15 18
16This command creates a Git alias called `pushall` which, when executed, will push the changes to all the remote repositories associated with the current repository. To use it, simply run `git pushall` instead of `git push` when you want to push to all the remote repositories at once. 19This command creates a Git alias called `pushall` which, when executed, will
20push the changes to all the remote repositories associated with the current
21repository. To use it, simply run `git pushall` instead of `git push` when
22you want to push to all the remote repositories at once.
17 23
18That's all, folks. 24That's all, folks.
25