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
module Blueprint where | |
import Prelude | |
import Data.Char hiding (intToDigit) | |
{- | |
- Eine Block-Quersumme fasst jeweils mehrere Ziffern vor Summation | |
- zusammen, bei der letzten Stelle beginnend. Zum Beispiel ist die | |
- 3-Block-Quersumme von 1234567 die Zahl 1 + 234 + 567 = 802. | |
- Eine alternierende Quersumme wechselt Addition und Subtraktion | |
- ab, und zwar so, dass insgesamt keine negative Zahl entsteht. |
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
[alias] | |
st = status | |
co = checkout | |
ci = commit | |
br = branch | |
fe = fetch | |
ui = update-index | |
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %f %Cgreen(%cr)%Creset' --abbrev-commit --date=relative | |
# View the SHA, description, and history graph of the latest 20 commits |