Chromium Code Reviews| Index: ports/devenv/bashrc |
| diff --git a/ports/devenv/bashrc b/ports/devenv/bashrc |
| index f68866051dcc91b716e88c1aedae186a562baa59..5f9a500a73cb1bbdf8bbf7a8958809d1d66608e6 100755 |
| --- a/ports/devenv/bashrc |
| +++ b/ports/devenv/bashrc |
| @@ -12,6 +12,13 @@ source /mnt/http/setup-environment |
| /mnt/http/install-base-packages.sh |
| +# Setup default .gitconfig if it doesn't already exist. |
|
Sam Clegg
2015/04/08 23:34:59
A bit more info here about why its needed and a TO
bradn
2015/04/09 00:07:21
Done.
|
| +if [ ! -e /home/user/.gitconfig ]; then |
| + git config --global init.templatedir "" |
| + git config --global user.name "John Doe" |
| + git config --global user.email "john.doe@foo.com" |
| +fi |
| + |
| # Setup environment again, to rescan the packages added. |
| source /mnt/http/setup-environment |