!DANGER!
This might void your warranty. Do it on your own risk.
I'm using the 🐟 emoji character as my SSID, because I like to be special.
| precedencegroup BooleanPrecedence { associativity: left } | |
| infix operator ^^ : BooleanPrecedence | |
| /** | |
| Swift Logical XOR operator | |
| ``` | |
| true ^^ true // false | |
| true ^^ false // true | |
| false ^^ true // true | |
| false ^^ false // false | |
| ``` |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream