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
#!/bin/bash | |
# put this function in .bash_aliases | |
function create_github_repo() { | |
if [ "$1" == "" ]; then | |
printf "Enter repo name: " | |
read repo_name | |
else | |
repo_name=$1 |
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
## How to add external project using git submodule? | |
## These are notes from when I added submodules to lued. | |
## Clean up | |
rm -rf lued_dev | |
## Clone your repo that will include the external projects | |
git clone https://jwrr@github.com/jwrr/lued.git lued_dev | |
cd lued_dev |