diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-10-02 15:00:27 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-10-02 15:00:27 -0300 |
commit | 1f3396b476b3a8716c638489a120691e103f287d (patch) | |
tree | f975f3935e483c6ebbcd4cf9285aff4edfd5cc76 | |
parent | 2e446bd47155e8cd052d4b907e41477515f0eefe (diff) | |
download | brweather-master.tar.gz brweather-master.tar.bz2 |
-rw-r--r-- | Git.md | 43 |
1 files changed, 43 insertions, 0 deletions
@@ -0,0 +1,43 @@ +Repositório Git +=============== + +Estas são informações não-oficiais sobre a sincronização do BrWeather +num repositório git. + +Atualizando +----------- + +No repositório git: + + git checkout develop + +Numa pasta temporária: + + VERSION="0.7.1" + EXTRA="0.1" + + wget http://downloads.sourceforge.net/project/conkywfc/BRWeather/brweather-$VERSIOn.tar.gz + wget http://downloads.sourceforge.net/project/conkywfc/BrWeather-themes-extras/brweather-themes-extras-$EXTRA.tar.gz + + tar xvf brweather-$VERSION.tar.gz + tar xvf brweather-themes-extras-$EXTRA.tar.gz + +Sincronizando: + + rsync -Cav --delete /path/to/brweather-$VERSION/ /path/to/brweather.git/ + rsync -av /path/to/brweather-themes-extras-$EXTRA/imagens/ /path/to/brweather.git/brweather/imagens/ + +De volta ao repositório git: + + mv brweather src + git checkout -- brweather + git checkout -- LICENSE + git status + # etc + git commit -m "Uploading version $VERSION" + +Após os testes: + + git checkout master + git merge develop + git push --all |