[RFC] git send-email hashbang

2018-08-17 Thread Samuel Maftoul
I recently contributed for the first time patches on this maillist and used for the first time `git format-patch` and `git send-email`. I had hard times making `git send-email` work on my mac, because the OSX bundled perl was missing the Net::SMTP::SSL module. So I did `cpan -f Net::SMTP::SSL` (I'm

[PATCH] branch: support configuring --sort via .gitconfig

2018-08-16 Thread samuel . maftoul
From: Samuel Maftoul Add support for configuring default sort ordering for git branches. Command line option will override this configured value, using the exact same syntax. Signed-off-by: Samuel Maftoul --- Documentation/config.txt | 6 + Documentation/git-branch.txt | 5

[PATCH] branch: support configuring --sort via .gitconfig

2018-08-16 Thread samuel . maftoul
From: Samuel Maftoul Add support for configuring default sort ordering for git branches. Command line option will override this configured value, using the exact same syntax. Signed-off-by: Samuel Maftoul --- Documentation/config.txt | 6 + Documentation/git-branch.txt | 3

[PATCH] branch: support configuring --sort via .gitconfig

2018-08-15 Thread samuel . maftoul
From: Samuel Maftoul Add support for configuring default sort ordering for git branches. Command line option will override this configured value, using the exact same syntax. --- Documentation/config.txt | 5 + Documentation/git-branch.txt | 4 builtin/branch.c | 10

[RFC] implement branch.sort config option

2018-08-13 Thread Samuel Maftoul
Currently, you can: git tag --sort=$sorting_key You can also do this on branches: git branch --sort=$sorting_key For tags, you can also configure it with a config key: git config tag.sort $sorting_key But there is no corresponding config for sorting branches. Locally, I have a (pretty simple