mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 17:28:01 +00:00
17 lines
232 B
Bash
Executable File
17 lines
232 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
set -ex
|
|
|
|
OLDDIR=$PWD
|
|
cd ~/.zprezto
|
|
|
|
git fetch upstream
|
|
git checkout master
|
|
git merge -m "Merge upstream/master" upstream/master
|
|
git submodule update --init --recursive
|
|
|
|
cd ~/.zprezto/contrib/fzf-tab
|
|
git pull
|
|
|
|
cd $OLDDIR
|