Skip to content

Commit

Permalink
Add svn grep, svn stauts
Browse files Browse the repository at this point in the history
  • Loading branch information
sanemat committed Jun 7, 2012
1 parent f4bd46f commit 90d3088
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .bashrc
Expand Up @@ -42,3 +42,14 @@ alias pup="plackup -MPlack::App::Directory -e 'Plack::App::Directory->new({root=
git() {
if [[ $@ == "stauts" ]]; then command git status; else command git "$@"; fi;
}
svn() {
if [[ $@ == "stauts" ]]
then
command svn status
elif [[ $@ == "grep" ]]
then
command svngrep
else
command svn "$@"
fi
}

0 comments on commit 90d3088

Please sign in to comment.