git-pull-clean ( -- )


Vocabulary
update

Definition
USING: io.directories io.pathnames system update.util ;

IN: update

: git-pull-clean ( -- )
image parent-directory [
{
"git"
"pull"
"git://factorcode.org/git/factor.git"
branch-name
} run-command
] with-directory ;