Instead of doing:
git push origin --all && git push nodester --all && git push duostack --all
Is there a way to do that with just one command?
Thanks :)
|
Instead of doing:
Is there a way to do that with just one command? Thanks :) |
|||
|
|
Create an
Then just This is how it looks in
|
|||||||||||||||||
|
|
As a CLI Alternative to editing the .git/config file, you could use the following commands:
The same You have accomplished the same as answer #1. You have just done it with Command Line instead of raw editing of the config file. |
|||
|
|
|
I wrote a short bash function to push to many remotes in one call. You can specify a single remote as a parameter, multiple remotes separated by spaces or don't specify any to have it push to all remotes. This can be added to your .bashrc or .bash_profile.
Example: Let's say your repo has 3 remotes: rem1, rem2 and rem3.
|
|||
|
|