Horje
git push to all remotes Code Example
git push to all remotes
#To push all branches to all remotes:
git remote | xargs -L1 git push --all

#Or if you want to push a specific branch to all remotes:
#Replace master with the branch you want to push.
git remote | xargs -L1 -I R git push R master

#(Bonus) To make a git alias for the command:
git config --global alias.pushall '!git remote | xargs -L1 git push --all'




Shell

Related
install adonis cli Code Example install adonis cli Code Example
how to trim log file linux Code Example how to trim log file linux Code Example
copy ssh remote server Code Example copy ssh remote server Code Example
install python 3 centos Code Example install python 3 centos Code Example
Install AdonisJS Code Example Install AdonisJS Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10