This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
T 127.0.0.1:45478 -> 127.0.0.1:11211 [AP] | |
set ykerherve:8080:sss 0 0 2. | |
10. | |
# | |
T 127.0.0.1:11211 -> 127.0.0.1:45478 [AP] | |
STORED. | |
## | |
T 127.0.0.1:45478 -> 127.0.0.1:11211 [AP] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Naur RBTools-0.2beta1/scripts/post-review RBTools-0.2beta1.new/scripts/pos | |
t-review | |
--- RBTools-0.2beta1/scripts/post-review 2009-03-28 22:40:09.000000000 -0 | |
700 | |
+++ RBTools-0.2beta1.new/scripts/post-review 2009-05-07 20:53:29.000000000 -0 | |
700 | |
@@ -148,8 +148,9 @@ | |
A representation of a SVN source code repository. This version knows how to | |
find a matching repository on the server even if the URLs differ. | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
my @a = mysub(); | |
my %hash = ( | |
foo => scalar( my @b = mysub() ), | |
bar => scalar @a, | |
baz => scalar( mysub() ), | |
boo => scalar(@{[ mysub() ]}), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
my $branch = shift; | |
my $head = `git rev-list --date-order --max-count=1 $branch`; | |
my $svnrev = `git svn find-rev $head`; | |
my $diff = `git diff --find-copies-harder --no-prefix $branch...`; | |
my $space = " "; | |
chomp $svnrev; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- /opt/local/libexec/git-core/git-svn.orig 2009-04-02 11:10:17.000000000 -0700 | |
+++ /opt/local/libexec/git-core/git-svn 2009-04-02 11:24:34.000000000 -0700 | |
@@ -84,6 +84,7 @@ | |
'repack-flags|repack-args|repack-opts=s' => | |
\$Git::SVN::_repack_flags, | |
'use-log-author' => \$Git::SVN::_use_log_author, | |
+ 'use-svk-log-author' => \$Git::SVN::_use_svk_log_author, | |
'add-author-from' => \$Git::SVN::_add_author_from, | |
%remote_opts ); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add in your .bashrc | |
# http://henrik.nyh.se/2008/12/git-dirty-prompt | |
# http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/ | |
# http://blog.cyberion.net/2009/01/improved-bash-prompt-for-git-usage.html | |
# username@Machine ~/dev/dir[master]$ # clean working directory | |
# username@Machine ~/dev/dir[master⚡]$ # dirty working directory | |
# | |
# I've made the following ajustements: | |
# - Use of plumbing, that should be faster than git status porcelain. | |
# - Don't show my repo as dirty if it has files unknown from the index (I always have). |
NewerOlder