Removed git co from bashrc and added git checkout

This commit is contained in:
Austen Adler 2014-08-01 22:12:44 -04:00
parent abc4b59716
commit d722618cc6

4
bashrc
View File

@ -167,7 +167,7 @@ function cinitify(){
git pull $FROM
fi
done
git co master
git checkout master
}
export -f cinitify
function initify(){
@ -185,7 +185,7 @@ function initify(){
git pull $FROM
fi
done
git co master
git checkout master
}
export -f initify