new fortunes. added script that is in progress for updating a mirror
[feisty_meow.git] / scripts / rev_control / push_repo_upstream.sh
1 #!/bin/bash
2
3 # this script updates a "relay" repository (let us call it B) that is used
4 # to mirror things from repository A (the source) into another repository C
5 # (the target).
6 # this is useful, for example, to maintain one's own master git archive for
7 # a codebase, but also push updates for that codebase into a sourceforge git
8 # repository.
9 #
10 # rats: how did i set up that archive?
11 #       we need to have those steps someplace.
12
13 git fetch upstream
14 git merge upstream/master
15
16 git push origin master
17