Posted on

GIT advice

  1. Show log
    git log

    1. --author="" – print commits by pointed user
    2. --name-only – only file name
    3. --oneline – commits comments in one line
    4. --graph – commits tree
    5. --reverse – old commits before new commits
    6. --after – commits after pointed date
    7. --before – commits before pointed date

Continue reading GIT advice