aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-10-02 15:00:27 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-10-02 15:00:27 -0300
commit1f3396b476b3a8716c638489a120691e103f287d (patch)
treef975f3935e483c6ebbcd4cf9285aff4edfd5cc76
parent2e446bd47155e8cd052d4b907e41477515f0eefe (diff)
downloadbrweather-1f3396b476b3a8716c638489a120691e103f287d.tar.gz
brweather-1f3396b476b3a8716c638489a120691e103f287d.tar.bz2
Git instructionsHEADmaster
-rw-r--r--Git.md43
1 files changed, 43 insertions, 0 deletions
diff --git a/Git.md b/Git.md
new file mode 100644
index 0000000..9289b8d
--- /dev/null
+++ b/Git.md
@@ -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