github - Sync AND Pull in a Git Repo -
my interest this: i'd set single homework repository share students. repository contains templates, specifications, , unit tests. students derive repository, complete homework, , push changes grading.
this past year did using bitbucket. created public git repository containing files. created private forks. worked well.
my problem this: whenever make changes files (i.e., fix bug in unit tests), students must actively sync original repo. many students not , not see updated files. know @ shell can execute
git remote add skeleton git@bitbucket.org:prof/profrepo.git git pull skeleton master
but i'd use in eclipse , in cs classes, technological intimidation issue , utility scripts not feasible. if tools set correctly, students still forget grab changes repository.
is there way can integrate pulling original repo three-step pull-code-push workflow? git support this?
Comments
Post a Comment