1. cd my-repo
    2. ##########
    3. git log
    4. ##########
    5. git tag
    6. ##########
    7. git tag v1.0
    8. ##########
    9. git show v1.0
    10. ##########
    11. git commit --amend -m'This is version 1.1'
    12. ##########
    13. git tag v1.1
    14. ##########
    15. git show v1.1
    1. cd my-repo
    2. ##########
    3. git log --pretty=format:"%T —— %an : %ae"
    4. ##########
    5. git log --pretty=format:"%T —— %cn : %ce, %s"
    6. ##########
    7. git log --pretty=format:"%t —— %cn, marks: %s"