01.20
Tired of looking at this:
[root@hsrv4 kaveri]# svn diff apps/frontend/modules/socket/templates/_form.php
Index: apps/frontend/modules/socket/templates/_form.php
===================================================================
--- apps/frontend/modules/socket/templates/_form.php (revision 835)
+++ apps/frontend/modules/socket/templates/_form.php (working copy)
@@ -10,7 +10,7 @@
$websites = $user->Group->getWebsites(true);
if (!isset($showAllTabs)) {
- $showAllTabs = true;
+ $showAllTabs = false;
}
//socket_type
$stype = $form['socket_type']->getValue();
[root@hsrv4 kaveri]#
And want this instead:

Color SVN diff
Just a matter of installing a package:
1. Install colordiff ( use the package manager of your choosing, Ubuntu has apt-get, Fedora has yum):
yum install colordiff
2. Instead of this:
svn diff path/to/file.rb
do this:
svn diff path/to/file.rb $* | colordiff
Use this if you want to depend on the GNU diff program. If you trust colordiff enough, use this:
svn diff path/to/file.rb --dif-cmd colordiff
3. That’s it. Done!
1 comment so far
Add Your Comment