I do push to two remote repositories when I do git commit all
[core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true [remote "origin"] url = [email protected]:kkk_pro/tst1.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master [remote "all"] url = [email protected]:kkk_pro/tst2.git fetch = +refs/heads/*:refs/remotes/all/* pushurl = [email protected]:kkk_pro/tst1.git pushurl = [email protected]:kkk_pro/tst2.git But when I type git push git pushes only to tst1 ? Why? How to ask git to use all as default remote?

