Home > Article > Backend Development > Some use cases for Git
git log --pretty=format:"%h %an %cd" --date=iso
git ls-remote --tags origin | grep [0-9]$
git log --since="2016-11-24 01:29:13 -0800" --until="2016-11-25 17:01:54 +0800" --pretty=format:"%Cgreen%h%Creset %an %cd %s" --date=iso
The above is the detailed content of Some use cases for Git. For more information, please follow other related articles on the PHP Chinese website!