Skip to content

Instantly share code, notes, and snippets.

View OsirisTerje's full-sized avatar
💭
Working on the NUnit3TestAdapter

Terje Sandstrom OsirisTerje

💭
Working on the NUnit3TestAdapter
View GitHub Profile
@5310
5310 / git-cheat-list.md
Created February 18, 2017 04:57
Git cheat list #cheatsheet

Git cheat list

  • name of the current banch and nothing else (for automation)

    git rev-parse --abbrev-ref HEAD
    
  • all commits that your branch have that are not yet in master

    git log master..<HERE_COMES_YOUR_BRANCH_NAME>