Skip to content

Instantly share code, notes, and snippets.

View crmorford's full-sized avatar

cassie morford crmorford

View GitHub Profile
@crmorford
crmorford / branch-splitter
Last active September 8, 2017 00:22
split branch into assets and app-deploy
#!/bin/bash
BRANCH=$1
git_stuff() {
asset_type=$1
array=$2
git checkout master
echo "creating new branch for $asset_type files"
git checkout -b $BRANCH-$asset_type
@crmorford
crmorford / mama.c
Last active February 24, 2017 18:28
mama homework
for (i=0; i<=userNum; i++) {
for (j=0; j<=i; j++) {
printf(" ");
}
printf("%d\n", i);
}