-----BEGIN PGP MESSAGE-----
Version: GnuPG v1
owF1UltIVEEY3vVStmppGEYK6hBGteSZOdfdaOtBCqELSBfs4jozZ87uSTu77Vm3
NpGg6KIl9qQkWhAJRReiJCgIKoTKoB68hSFdMKMHM5MMorA5Um81L/P//3zf93//
8J/LTnWluK/WRUbzstoK3M8/Edf24q7WBkAiehL4G0Atm7sM0wqxWDRmWnHgB0iB
VDYIU1WkyYamGUSgoiQiRaEaRbpKZYwlSdGBF4QjtsPgMgTbbI0Z4TWeBE2dV/+B
r597oD7q01SEkUSpoTMsEEIRFDXow1BkguAAbRaz8AHG0XYYhy3Q6AUxlojUMsev
bYZ4Cxv49wAqK9inQB1j1RANQ8QQ+bi8KhgUMWIwH2KQ24CKjjQoyiqSRYPH2MBU
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
# This macro is annoying | |
macro_rules! try_conv { | |
($expr:expr) => (match $expr { | |
Ok(val) => val, | |
Err(err) => { | |
return Err(SerdeError::custom(err.description())) | |
} | |
}) | |
} |
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
#!/bin/bash | |
mkdir testtmp | |
cd testtmp | |
git init | |
echo A>A | |
git add A | |
git commit -m "A" | |
echo B>B | |
git add B |