diff --git a/tasks/general/acct_mgmt/users.yml b/tasks/general/acct_mgmt/users.yml index 6a458b8..736f99c 100644 --- a/tasks/general/acct_mgmt/users.yml +++ b/tasks/general/acct_mgmt/users.yml @@ -1011,6 +1011,18 @@ alias reset-prod="load-branch prod main" alias reset-stage="load-branch stage main" alias reset-dev="load-branch dev main" + function check-code-branches { + for dir in ~/Code/*/; do + cd $dir + pwd + git ls-remote --heads + echo " " + cd .. + done + } + alias check-branches="check-code-branches" + alias check-branch="git ls-remote --heads" + alias branch-check="check-branch" alias_reload_bash: | alias reload-bash="source ~/.bashrc" alias bash-reload="reload-bash"