Last active
May 9, 2023 13:52
-
-
Save guanting112/f1849f5013b899a2195ead4252df3f75 to your computer and use it in GitHub Desktop.
[macOS] SourceTree command line tools install script ( support 10.11, 10.12 )
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
#!/usr/bin/env bash | |
function link_stree { | |
ln -s /Applications/SourceTree.app/Contents/Resources/stree /usr/local/bin/ | |
} | |
function install { | |
link_stree | |
} | |
install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I wasn't able to install stree from the menu on my Mac M1. This script works like a charm, thank you!