This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@umate:~/Desktop/REP_TMP/git# cat git_config_sys.sh | |
| #!/bin/bash | |
| #script for GIT configuration in whole system at /etc/gitconfig | |
| git config --system user.name "Sergey Kovbyk" | |
| git config --system user.email [email protected] & | |
| git config --system color.status auto & | |
| git config --system color.branch auto & | |
| git config --system color.interactive auto & | |
| git config --system color.diff autoroot@umate:~/Desktop/REP_TMP/git# |