From 4582189b157c439e7ff3219b1c9d6224f2eed03b Mon Sep 17 00:00:00 2001 From: jwansek Date: Sun, 18 Sep 2022 21:16:34 +0100 Subject: Added to post creation message --- make_repo.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make_repo.py b/make_repo.py index 4ba01d0..ea585c2 100755 --- a/make_repo.py +++ b/make_repo.py @@ -114,6 +114,8 @@ And add github mirror (insecure method, keys are stored locally): git remote add github https://%s:%s@github.com/%s/%s Add a github mirror (secure method using SSH): git remote add github git@github.com:%s/%s +To add a `git pushall` alias to push to all remotes: + git config --global alias.pushall '!git remote | xargs -L1 git push --all' """ % ( repo_url, repo_url, CONFIG.get("github", "user"), CONFIG.get("github", "key"), CONFIG.get("github", "user"), repo_name, CONFIG.get("github", "user"), repo_name -- cgit v1.2.3