Set username
git config --global user.name "Your Name Here"
Set e-mail
git config --global user.email "[email protected]"
Clorize and make git output pretty
git config --global color.ui true
Creating a repository
Set username
git config --global user.name "Your Name Here"
Set e-mail
git config --global user.email "[email protected]"
Clorize and make git output pretty
git config --global color.ui true
Creating a repository
$tail -100f /var/log/applications/application.log | awk ' | |
/INFO/ {print "\033[32m" $0 "\033[39m"} | |
/Exception/ {print "\033[31m" $0 "\033[39m"} | |
' |
Prereq:
apt-get install zsh
apt-get install git-core
Getting zsh to work in ubuntu is weird, since sh
does not understand the source
command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh