15 lines
310 B
Bash
15 lines
310 B
Bash
|
|
#! /bin/sh
|
||
|
|
#
|
||
|
|
# update.sh
|
||
|
|
# Copyright (C) 2017 Fabian Ising <fabian@murgi.de>
|
||
|
|
#
|
||
|
|
# Distributed under terms of the Apache v2.0 license.
|
||
|
|
#
|
||
|
|
|
||
|
|
git pull
|
||
|
|
|
||
|
|
git subtree push --prefix=i3 i3 master
|
||
|
|
git subtree push --prefix=tmux tmux master
|
||
|
|
git subtree push --prefix=zsh zsh master
|
||
|
|
git subtree push --prefix=vim vim master
|