Git tips and resources

  • This page is for quick Git tips and tricks and basic resources.

    Git resources

    Quick Git Tips

    Complete git log

    git log --decorate

    Minimal overview of git history, one line per commit

    git log --oneline

    Search for a commit

    git log -g --grep=search_string

    See a particular commit

    To simply view a given commit, you want the "git show" command:
    git show cb64d08