You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2013/02/06 00:52:02 UTC

svn commit: r1442801 - in /isis/site/trunk/content/contributors: git-cookbook.md release-process.md

Author: danhaywood
Date: Tue Feb  5 23:52:02 2013
New Revision: 1442801

URL: http://svn.apache.org/viewvc?rev=1442801&view=rev
Log:
isis site: minor updates

Modified:
    isis/site/trunk/content/contributors/git-cookbook.md
    isis/site/trunk/content/contributors/release-process.md

Modified: isis/site/trunk/content/contributors/git-cookbook.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/contributors/git-cookbook.md?rev=1442801&r1=1442800&r2=1442801&view=diff
==============================================================================
--- isis/site/trunk/content/contributors/git-cookbook.md (original)
+++ isis/site/trunk/content/contributors/git-cookbook.md Tue Feb  5 23:52:02 2013
@@ -291,4 +291,15 @@ git reset --hard <i>shaId</i>      # mov
 </pre>
 
 
+## If you've forgotten to prefix your commits (but not pushed)
 
+One of our committers, Alexander Krasnukhin, has put together some git scripts to help his workflow.  Using one of these, `git prefix`, you:
+
+> can just commit with proper message without bothering about prefix and add prefix only in the end *before* the final push.
+ 
+>For example, to prefix all not yet prefixed commits `master..isis/666` with `ISIS-666` prefix, use:
+<pre>
+  git prefix ISIS-666 master..isis/666
+</pre>
+
+You can grab this utility, and others, from [this repo](https://github.com/themalkolm/git-boots).

Modified: isis/site/trunk/content/contributors/release-process.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/contributors/release-process.md?rev=1442801&r1=1442800&r2=1442801&view=diff
==============================================================================
--- isis/site/trunk/content/contributors/release-process.md (original)
+++ isis/site/trunk/content/contributors/release-process.md Tue Feb  5 23:52:02 2013
@@ -946,7 +946,7 @@ If the core was updated, then you'll mos
 Next, do a sanity check that everything builds ok:
 
 <pre>
-rm -rf ~/.m2/org/apache/isis
+rm -rf ~/.m2/repository/org/apache/isis
 mvn clean install
 </pre>