A PHP Error was encountered
Severity: Notice
Message: Undefined index: userid
Filename: views/question.php
Line Number: 191
Backtrace:
File: /var/www/html/cnasolution/application/views/question.php
Line: 191
Function: _error_handler
File: /var/www/html/cnasolution/application/controllers/Questions.php
Line: 419
Function: view
File: /var/www/html/cnasolution/index.php
Line: 315
Function: require_once
Git config edit color with multiple styles
does any of you know if there a way to apply git color with both bold and underline (or as a more general question - apply color with multiple style args)?
I try to set git config color.grep.filename to be green, bold and underline... It seems as if I can't do it and must choose between bold and underline.
I tried the obvious way and got an error
git config color.grep.filename green bold ul
then I tried this way and only ul passed through
git config color.grep.filename green bold git config color.grep.filename ul
then I tried hardcoded like this and only one of them worked
git config --add color.grep.filename "green ul bold"
and lastly I tried this way and got only bold green to work
git config --add color.grep.filename ul git config --add color.grep.filename green bold
Is there something I am missing or is it just not a possibility to combine?
Thanks for the help :D