2022-10-01 18:58:39 +00:00
|
|
|
#####################################################################
|
|
|
|
|
|
|
|
SETUP__GIT() {
|
2023-06-28 00:30:02 +00:00
|
|
|
STATUS 'updating remotes for .wryn'
|
2022-10-01 18:58:39 +00:00
|
|
|
cd $DOTWRYN_PATH
|
2023-11-11 22:20:18 +00:00
|
|
|
git remote add upstream git@github.com:wrynegade/dotwryn.git
|
|
|
|
git remote set-url --add --push upstream git@github.com:wrynegade/dotwryn.git
|
|
|
|
git remote set-url --add --push upstream git@yage.io:wrynegade/dotwryn.git
|
|
|
|
git remote set-url --add --push upstream git@bitbucket.org:wrynegade/dotwryn.git
|
2022-10-01 18:58:39 +00:00
|
|
|
|
2023-06-28 00:30:02 +00:00
|
|
|
STATUS 'updating upstream for zsh/plugins/code-activator'
|
2022-10-01 18:58:39 +00:00
|
|
|
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
|
|
|
|
|
2023-06-28 00:30:02 +00:00
|
|
|
STATUS 'updating upstream for zsh/plugins/scwrypts'
|
2022-10-01 18:58:39 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
cd $DOTWRYN_PATH
|
|
|
|
}
|