removed classes and added epic branches to rdcleanup

This commit is contained in:
Wryn Wagner 2019-12-20 12:48:37 -07:00
parent 0abeb66817
commit c90ff2337d
2 changed files with 8 additions and 8 deletions

View File

@ -44,7 +44,7 @@ function rntbranchcleanup() {
rnt $dir >/dev/null 2>/dev/null;
if [ -d .git ]; then
printf " - %s\e[1;34m %s\e[0m..." "clearing repository" "$dir";
git branch -d $(git branch | sed -E "/master|\*/d") >/dev/null 2>/dev/null;
git branch -d $(git branch | sed -E "/master|\*|epic-*/d") >/dev/null 2>/dev/null;
printf "\e[1;32m%s\e[0m\n" " DONE";
else
printf " - \e[1;34m%s\e[1;31m %s\e[0m" "$dir" "is not a git repository";

View File

@ -4,16 +4,16 @@
# -------------------------------------
alias school="cd $SCHOOL_DIR";
alias classes="cat $SCHOOL_DIR/.classes";
alias classes="echo; cat $SCHOOL_DIR/.classes | lolcat; echo";
alias cs5680='school; cd cs5680__computer_vision';
alias compvis='cs5680'
#alias cs5680='school; cd cs5680__computer_vision';
#alias compvis='cs5680'
alias cs5600='school; cd cs5600__intelligent_systems';
alias intsys='cs5600'
alias engr3080='school; cd engr3080__tech_writing';
alias techwrit='engr3080'
alias phil1120='school; cd phil1120__social_ethics';
alias socioet='phil1120'
#alias engr3080='school; cd engr3080__tech_writing';
#alias techwrit='engr3080'
#alias phil1120='school; cd phil1120__social_ethics';
#alias socioet='phil1120'
HW_TEMPLATE="$DOTWRYN/latex/homework_template.tex"