This file contains 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
# These aliases have been collected and shown in the making of this video, explaining how to set up and use git alises | |
# Source: https://youtu.be/Uk4GnYoQx_I | |
[alias] | |
# Shortcuts | |
ch = checkout | |
br = branch | |
st = status | |
br = branch | |
cm = commit -m |
This file contains 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
export type WeightedItem<T> = { | |
original: T; | |
weight: number; | |
}; |