public
Fork of francois/piston
Description: Piston is a utility that eases vendor branch management. This repository is a complete reimplementation of Piston to provide different backends, depending on the repositories and working copies you pistonize from.
Homepage: http://piston.rubyforge.org/
Clone URL: git://github.com/tapajos/piston.git
Prepare 1.9.4 release
francois (author)
Mon Aug 25 06:18:15 -0700 2008
commit  f477cccabaecb051ba13121d03ac9ce13132d059
tree    f52c0b47b1907103141bcb935eff7c6df5ffb0e7
parent  77e051e4f459f0d91e81efd65beceea0a59a8a07
...
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
0
@@ -1,3 +1,8 @@
0
+
0
+* Thanks to Brian Takita (btakita), piston update with a Git repository works!
0
+* Thanks to mattknox and scambra for manifest updates.
0
+* Thanks to Marcos Tapajós (tapajos) for many small improvements.
0
+
0
 == 1.9.3 2008-06-03
0
 
0
 * Import git branches using --revision origin/BRANCH_NAME, or a tag
0
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
0
@@ -1,20 +1,3 @@
0
-= Update workflow (when Git is available)
0
-
0
-$ git clone ORIGINAL_URL TMPDIR
0
-$ git checkout -b mine ORIGINAL_COMMIT_SHA1
0
-$ # apply my changes
0
-$ git rebase ORIGINAL_BRANCH_NAME
0
-$ # if no errors, copy resulting data back
0
-$ # if merge errors, complain and abort
0
-
0
-= Update workflow (old Subversion)
0
-
0
-$ svn checkout --revision NEWHEAD --ignore-externals REPOSITORY_URL
0
-$ # copy NEWHEAD over my WC
0
-$ svn merge --revision MYLASTCHANGE:HEAD
0
-$ # if merge errors, complain and abort
0
-
0
-
0
 = Integration tests to verify
0
 
0
 * Handles adds
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module Piston #:nodoc:
0
   module VERSION #:nodoc:
0
     MAJOR = 1
0
     MINOR = 9
0
- TINY = 3
0
+ TINY = 4
0
 
0
     STRING = [MAJOR, MINOR, TINY].join(".")
0
   end

Comments

    No one has commented yet.