Git tips and tricks
Git tips and tricks you forgot about Git log with names of branches and tags As default git log doesn’t give you information about branches and tags. If you need such info you must add –decorate argument to git log command, for example:
1 2 3 4 5 6 7 8 9 10 11 12 |
$ git log --oneline --decorate 9bfa493 (HEAD, origin/1.3.x, r, 1.3.x) [#1581] Close input field for authenticityToken ef811e8 [#1577] Remove e.printStackTrace() 6359253 [#1570] Allow setting of SSL ciphers as configuration option 89f1deb remove dead code d795bee Hide language menu on module page 601ead1 [#1493] docviewer cosmetic changes 637f33a Fixed wrong declaration of jquery version 76a624d Fixed wrong version of jquery d1b66e4 [#1493] Done on i18n of docviewer 6d4ee8e Merge pull request #512 from xael-fry/lighthouse-1524-patch |
[…]