Last active
August 21, 2017 13:24
-
-
Save ladislas/e2f8fca288669bccafb93bfa8104749a to your computer and use it in GitHub Desktop.
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
printf "\nCloning weareleka/chibios to chibios\n" | |
git clone https://github.com/weareleka/chibios --depth=1 | |
printf "\nChanging directory to chibios\n" | |
cd chibios | |
printf "\nChanhing the fetch origin config\n" | |
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" | |
printf "\nFetching the stable branch\n" | |
git fetch origin stable_17.6.x --depth=1 | |
printf "\nCheckingout stable\n" | |
git checkout stable_17.6.x | |
printf "\nCreating stable-slim" | |
git checkout -b stable_17.6.x-slim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment