Can i push into two remote repository in the same command line?
问题 I want to push and syncronize my code in two different remote repository, to Gitlab and Github at the same command, is it possible? 回答1: Let's me recommend this push-to-all-remotes alias: git config [--global] alias.push-to-all-remotes '!git remote | xargs -I% -n1 git push %' Usage: git push-to-all-remotes master . Taken from gitalias.com (full disclosure: I'm a contributor there). 回答2: Yes. Just define two remotes for your working copy: git remote add lab https://gitlab.com/... git remote