2022-10-01 18:58:39 +00:00
|
|
|
#####################################################################
|
|
|
|
|
|
|
|
SETUP__GIT() {
|
|
|
|
__STATUS 'updating remotes for .wryn'
|
|
|
|
cd $DOTWRYN_PATH
|
|
|
|
git remote rm origin 2>/dev/null
|
|
|
|
git remote add origin git@github.com:wrynegade/dotwryn.git
|
|
|
|
git remote set-url --add --push origin git@github.com:wrynegade/dotwryn.git
|
|
|
|
git remote set-url --add --push origin git@yage.io:wrynegade/dotwryn.git
|
|
|
|
git remote set-url --add --push origin git@bitbucket.org:wrynegade/dotwryn.git
|
2022-10-01 19:50:12 +00:00
|
|
|
git fetch origin >/dev/null 2>&1
|
|
|
|
git branch --set-upstream-to=origin/main main >/dev/null 2>&1
|
|
|
|
|
2022-10-01 18:58:39 +00:00
|
|
|
|
|
|
|
__STATUS 'updating upstream for zsh/plugins/code-activator'
|
|
|
|
cd $DOTWRYN_PATH/zsh/plugins/code-activator
|
|
|
|
git remote rm upstream 2>/dev/null
|
|
|
|
git remote add upstream git@yage.io:zsh/code-activator.git
|
|
|
|
git remote set-url --add --push upstream git@yage.io:zsh/code-activator.git
|
|
|
|
git remote set-url --add --push upstream git@github.com:wrynegade/code-activator-zsh.git
|
|
|
|
|
|
|
|
__STATUS 'updating upstream for zsh/plugins/scwrypts'
|
|
|
|
cd $DOTWRYN_PATH/zsh/plugins/scwrypts
|
|
|
|
git remote rm upstream 2>/dev/null
|
|
|
|
git remote add upstream git@yage.io:zsh/code-activator
|
|
|
|
git remote set-url --add --push upstream git@yage.io:zsh/code-activator
|
|
|
|
git remote set-url --add --push upstream git@github.com:wrynegade/scwrypts.git
|
|
|
|
|
|
|
|
__STATUS 'updating upstream for zsh/plugins/ssh'
|
|
|
|
cd $DOTWRYN_PATH/zsh/plugins/ssh
|
|
|
|
git remote rm upstream
|
|
|
|
git remote add upstream git@yage.io:zsh/ssh.git
|
|
|
|
|
|
|
|
cd $DOTWRYN_PATH
|
|
|
|
}
|