emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Nonsense in gnus-uu.el


From: Paul Eggert
Subject: Re: Nonsense in gnus-uu.el
Date: Wed, 15 Apr 2015 10:53:57 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0

On 04/15/2015 06:37 AM, Lars Magne Ingebrigtsen wrote:
I don't have any shell command called git-changelog-symlink-init,
apparently.
It's something you need to define, unfortunately. 'vc-dwim --help' says this:

    Here's how to use vc-dwim in a project that does not version-control a
ChangeLog file. Create a repository just for your personal ChangeLog file and make a symlink to it from the top-level directory of the project. For projects that use git, I put this tiny auxiliary repository in a directory named .git/c. You can use this bash/zsh alias to set it up and to create
    the symlink:

        git-changelog-symlink-init()
        {
            local d=.git/c
            test -d .git || return 1
            mkdir $d
            touch $d/ChangeLog
            (cd $d && git init && git add ChangeLog && git commit -m. -a)
            ln --backup -s $d/ChangeLog .
        }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]