[chronojump] Improved howto_new_version



commit 949b4877339756c88be21e55be2f3959b4684b39
Author: Xavier de Blas <xaviblas gmail com>
Date:   Fri Aug 5 11:20:20 2016 +0200

    Improved howto_new_version

 howto_new_version.txt |   36 ++++++++++++++++++++----------------
 1 files changed, 20 insertions(+), 16 deletions(-)
---
diff --git a/howto_new_version.txt b/howto_new_version.txt
index 92d55d2..86fcae4 100644
--- a/howto_new_version.txt
+++ b/howto_new_version.txt
@@ -13,37 +13,41 @@ sh autogen.sh
 make dist
 
 
-VERSION=0.9.3
+VERSION=1.6.2
 [1]
 git commit -a -m "Bump version $VERSION"
 
 git push
-git checkout -b "tags/$VERSION" # creates a new branch
+
+#with branching:
+#git checkout -b "tags/$VERSION" # creates a new branch
 # keep doing commits:
 # git commit -a
 # git commit -a
 # git cherry-pick -x "commit-from-master-or-some-branch-that-we-want-here"
+#When we are happy:
 
-When we are happy:
 git tag -a "$VERSION"
 git push origin --tags
 scp "chronojump-$VERSION.tar.gz" xaviblas master gnome org:.
 ssh xaviblas master gnome org
 ftpadmin install "chronojump-$VERSION.tar.gz"
 
-Go back to master:
-git checkout master
-
-git note:
-If we want to release 0.9.4 based on an bug fix from 0.9.3:
-
-git checkout tags/0.9.3
-git checkout -b tags/0.9.4 # creates a new branch based on 0.9.3
-git cherry-pick -x "commit-from-master-or-some-branch-that-we-want-here"
-vim "fix something"
-git commit -a -m "Important fix"
-VERSION=0.9.4
-Then go to [1]
+#with branching:
+#Go back to master:
+#git checkout master
+
+#fixing previous release
+#git note:
+#If we want to release 0.9.4 based on an bug fix from 0.9.3:
+#
+#git checkout tags/0.9.3
+#git checkout -b tags/0.9.4 # creates a new branch based on 0.9.3
+#git cherry-pick -x "commit-from-master-or-some-branch-that-we-want-here"
+#vim "fix something"
+#git commit -a -m "Important fix"
+#VERSION=0.9.4
+#Then go to [1]
 
 
 DEB) create deb package


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]