From 14af076627a25b52ca1761c13e9da824db1bcdae Mon Sep 17 00:00:00 2001 From: "rhatto@riseup.net" Date: Fri, 11 Apr 2014 13:38:34 -0300 Subject: Sketching coding standards --- development.mdwn | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'development.mdwn') diff --git a/development.mdwn b/development.mdwn index 957a7f8..91ddc87 100644 --- a/development.mdwn +++ b/development.mdwn @@ -37,6 +37,13 @@ These steps should be run once in a while to ensure we have an up to date packag DIST=sid sudo cowbuilder --update +Coding standards +---------------- + + - Respect the existing coding style. + + - Be clear: easy audability must be one of keyringer's requirements. + Development workflow -------------------- -- cgit v1.2.3 From 79a87b0e7536299ba49b559e8bcdd0c96291f413 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 16 May 2014 16:43:04 -0300 Subject: Release workflow with git-flow --- development.mdwn | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'development.mdwn') diff --git a/development.mdwn b/development.mdwn index 91ddc87..67c6456 100644 --- a/development.mdwn +++ b/development.mdwn @@ -52,9 +52,10 @@ We use [git-flow](https://github.com/nvie/gitflow) for the development workflow. Release workflow ---------------- -Go to master branch +Go to develop branch and start a new release - git checkout master + git checkout develop + git flow release start VERSION Prepare the source code: @@ -64,6 +65,8 @@ Prepare the source code: Create and upload a new release: + git flow release finish $VERSION + git checkout master make release Update the debian branch: -- cgit v1.2.3