aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/git-svn/git-svn.txt
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-02-26 02:22:27 -0800
committerJunio C Hamano <junkio@cox.net>2006-02-26 14:55:13 -0800
commit8f22562c6bfa413c621517dd654b58ed39e98045 (patch)
tree269ee6fe637195a761027d310e463bc2b87c3ca7 /contrib/git-svn/git-svn.txt
parentf60d46911dd0c0526339b039ced8772773bd3dea (diff)
downloadgit-8f22562c6bfa413c621517dd654b58ed39e98045.tar.gz
contrib/git-svn: add show-ignore command
Recursively finds and lists the svn:ignore property on directories. The output is suitable for appending to the $GIT_DIR/info/exclude file. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'contrib/git-svn/git-svn.txt')
-rw-r--r--contrib/git-svn/git-svn.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/git-svn/git-svn.txt b/contrib/git-svn/git-svn.txt
index cf098d733a..b4b7789dee 100644
--- a/contrib/git-svn/git-svn.txt
+++ b/contrib/git-svn/git-svn.txt
@@ -61,6 +61,11 @@ rebuild::
the directory/repository you're tracking has moved or changed
protocols.
+show-ignore::
+ Recursively finds and lists the svn:ignore property on
+ directories. The output is suitable for appending to
+ the $GIT_DIR/info/exclude file.
+
OPTIONS
-------
-r <ARG>::
@@ -152,6 +157,8 @@ Tracking and contributing to an Subversion managed-project:
git commit git-svn-HEAD..my-branch
# Something is committed to SVN, pull the latest into your branch::
git-svn fetch && git pull . git-svn-HEAD
+# Append svn:ignore settings to the default git exclude file:
+ git-svn show-ignore >> .git/info/exclude
DESIGN PHILOSOPHY
-----------------