Skip to content

Instantly share code, notes, and snippets.

@sergko
sergko / git config --sytem #level
Created March 16, 2018 12:13
git config --sytem #level description
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#