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
#!/bin/bash | |
# Merges the ${BASE} branch into all other branches | |
# | |
# Process: | |
# | |
# - Save the name of the current branch | |
# - If the current branch is not ${BASE} then checkout ${BASE}. | |
# - Pull the latest changes for ${BASE} from its upstream branch. | |
# - Loop over each remote branch. |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>comment</key> | |
<string>Created by Wes Bos. Based on ‘Cobalt’</string> | |
<key>author</key> | |
<string>Wes Bos</string> |
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
echo '' | |
echo '' | |
echo '=== update Oh-My-ZSH ===' | |
echo '' | |
echo '' | |
env ZSH=$ZSH /bin/sh $ZSH/tools/upgrade.sh | |
echo '' | |
echo '' |