diff --git a/per-host/mari-wovn/.bash_aliases b/per-host/mari-wovn/.bash_aliases index 758b970..f20e80e 100644 --- a/per-host/mari-wovn/.bash_aliases +++ b/per-host/mari-wovn/.bash_aliases @@ -54,11 +54,14 @@ function get_remote_branch_name() { } function wovn_pull() { - printf "=== Retrieving the latest data from the repository...\n" - git fetch --all || return "$?" - git rebase origin/develop_front develop_front || return "$?" - git rebase origin/develop develop || return "$?" - git rebase origin/master master || return "$?" + ( + cd "~/equalizer.git" + printf "=== Retrieving the latest data from the repository...\n" + git fetch --all || return "$?" + git rebase origin/master master || return "$?" + git rebase origin/develop develop || return "$?" + git rebase origin/develop_front develop_front || return "$?" + ) } function wovn_update() {