Commands to get commit statistics for a Git repository from the command line -
using git log
, git shortlog
and friends.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// See the flow link at the bottom, and the GIT comment below | |
// Good utils | |
type $If<X: boolean, Then, Else = empty> = $Call<((true, Then, Else) => Then) & ((false, Then, Else) => Else), X, Then, Else>; | |
type $Not<X: boolean> = $If<X, false, true>; | |
type $And<X: boolean, Y: boolean> = $If<X, Y, false>; | |
type $Or<X: boolean, Y: boolean> = $If<X, true, Y>; | |
// Unique, internal Symbols. Probably I can actually use JS's Symbol. Need to see how well Flow implements it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For the Joy of Cooking | |
2 Single Crusts | |
Ingredients | |
2½ cups flour | |
1 teaspoon sugar | |
¼ cup shortening | |
1 teaspoon salt |