Useful git command for developers
Git log [code language="bash"] git log --pretty=format:"%h%x09%an%x09%ad%x09%s" [/code] Adding it to the bash script [code language="bash"] echo "alias gitl='git log --pretty=format:"%h%x09%an%x09%ad%x09%s"'" >> ~/.bashrc source ~/.bashrc…