Proposal: Output should push to different servers in parallel

2019-02-06 Thread Victor Porton
I experienced a slowdown in Git pushing when I push to more than one server. I propose: Run push to several servers in parallel. Not to mix the output, nevertheless serialize the output, that is for example cache the output of the second server push and start to output it immediately after th

Feature suggestion: Filter branches by user

2019-01-30 Thread Victor Porton
I want Git to display all branches created by me. So we need the new feature of Git, to display all branches created by a given user ("me" by default). I think, the similar feature for tags may also be useful.

Bug report: stdout vs stderr

2016-06-15 Thread Victor Porton
Why half of Git output goes to stdout and half to stderr? I suspect this is a bug. Below I call `git pushbug` alias defined it the below presented config file. $ cat .git/configĀ  [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = tru

A small Git bug

2016-04-10 Thread Victor Porton
I have three branches: master, prerelease, and devel. Suppose now we are in master. I often run the following command (in fact it is an alias, to save typing): git push && git checkout prerelease && git merge master && git push && git checkout devel && git merge prerelease && git push && git che