#!/usr/bin/env zsh # Only uncomment a function if you need to override the default behavior. # See: ./scripts/integration.base.sh # clone_repo() { # # clones from git@github.com:theorchard by default # # from repos that are directly under theorchard # } # setup_repo() { # _repo_exists "$1" || return 1 # cd ../$1 # # ...override code here... # cd - # } # update_deps() { # _repo_exists "$1" || return 1 # cd ../$1 # # ...override code here... # cd - # } # add_upstream() { # _repo_exists "$1" || return 1 # cd ../$1 # # ...override code here... # cd - # } # rebase_repo() { # _repo_exists "$1" || return 1 # cd ../$1 # # ...override code here... # cd - # }