Revision 4c60c6b6c049f3ea16de61f103bbdebf7dc69847 authored by James Foucar on 05 October 2021, 21:08:29 UTC, committed by James Foucar on 05 October 2021, 21:08:29 UTC
1 parent 73c6273
Raw File
checkout.sh
#!/bin/bash

# Replace all ssh URLs to submodules with HTTP URLs
sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
git submodule update --init
back to top