]> git.madduck.net Git - code/vcsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Automate handling of .gitignore.d/$REPO_NAME
authorRichard Hartmann <richih.mailinglist@gmail.com>
Fri, 18 Nov 2011 17:09:28 +0000 (18:09 +0100)
committerRichard Hartmann <richih.mailinglist@gmail.com>
Fri, 18 Nov 2011 17:09:28 +0000 (18:09 +0100)
excludesfile = .gitignore.d/$REPO_NAME is set on

* init
* clone
* seed-gitignore

vcsh

diff --git a/vcsh b/vcsh
index 18288805d4e7c94b99d1bee21d095556d75d034e..6de5f56722277741a9caf8ade2a0e97806eb6c4d 100755 (executable)
--- a/vcsh
+++ b/vcsh
@@ -74,7 +74,8 @@ init() {
                 exit 20) || exit 20
        cd "$GIT_WORK_TREE"
        git init
-       git config core.worktree "$GIT_WORK_TREE"
+       git config core.worktree     "$GIT_WORK_TREE"
+       git config core.excludesfile ".gitignore.d/$REPO_NAME"
        verbose "init() end"
 }
 
@@ -137,6 +138,7 @@ elif [ "$1" = 'clone' ]; then
        git remote add origin "$GIT_REMOTE"
        git config branch.master.remote origin
        git config branch.master.merge  refs/heads/master
+       git config core.excludesfile    ".gitignore.d/$REPO_NAME"
        git fetch
        for object in $(git ls-tree -r origin/master | awk '{print $4}'); do
                [ -e "$object" ] &&
@@ -175,6 +177,7 @@ elif [ "$1" = 'seed-gitignore' ]; then
        verbose "seed-gitignore begin"
        [ -z $2 ] && help && echo && echo "$SELF $1: please specify repository to work on" && return 0
        use "$2"
+       git config core.excludesfile ".gitignore.d/$REPO_NAME"
        files=$(git ls-files)
        gitignores=$(for file in $(git ls-files); do
                while true; do