This file contains 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html> | |
<head> | |
<style type="text/css"> | |
a { text-decoration: none; } | |
a:hover { text-decoration: underline; } | |
h1 { font-family: arial, helvetica, sans-serif; font-size: 18pt; font-weight: bold;} | |
h2 { font-family: arial, helvetica, sans-serif; font-size: 14pt; font-weight: bold;} | |
body, td { font-family: arial, helvetica, sans-serif; font-size: 10pt; } | |
th { font-family: arial, helvetica, sans-serif; font-size: 11pt; font-weight: bold; } |
This file contains 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
# Colorize SVN | |
# ------------ | |
# Adds color to the output of commands like svn status and svn update. | |
# The original version of the script was posted by Ash_ on Stackoverflow | |
# Source: http://stackoverflow.com/questions/8786400/svn-add-colors-on-command-line-svn-with-awk-in-bash | |
function svn { | |
# Skip the color script when running an svn commit. | |
for x in "$@"; do | |
if [ $x = commit ] || [ $x = ci ]; then | |
command svn "$@"; |