Re: [AUCTeX-devel] New release?

2013-07-20 Thread Mosè Giordano
Hi Ralf, 2013/7/19 Mosè Giordano : >> - echo `date "+%Y-%m-%d "`" "${COMMITTER} > ChangeLog >> + echo `date "+%Y-%m-%d "`" ${COMMITTER}" > ChangeLog >> >> Not sure if this change is necessary. > > Without this change I previously got a redirection error due to the > `<..>' in `COMMITTE

Re: [AUCTeX-devel] New release?

2013-07-20 Thread Ralf Angeli
* Mosè Giordano (2013-07-20) writes: > 2013/7/19 Mosè Giordano : >>> - echo `date "+%Y-%m-%d "`" "${COMMITTER} > ChangeLog >>> + echo `date "+%Y-%m-%d "`" ${COMMITTER}" > ChangeLog >>> >>> Not sure if this change is necessary. >> >> Without this change I previously got a redirection er

Re: [AUCTeX-devel] New release?

2013-07-20 Thread Ralf Angeli
* Mosè Giordano (2013-07-19) writes: > 2013/7/19 Ralf Angeli : >> >> Here are a few points that caught my eye: >> >> -COMMITTER="David Kastrup " >> +COMMITTER="`git config user.name` \<`git config user.email`\>" >> >> Those two commands return nothing if I execute them on the command line. >> I'

Re: [AUCTeX-devel] New release?

2013-07-20 Thread Nicolas Richard
Mosè Giordano writes: > `git add file' stages `file' for the next commit, then `git commit' > actually commits all staged files. So `git add ChangeLog ; git > commit' should be equivalent to `cvs commit ChangeLog'. `git commit > -a' commits all tracked files, also non explicitly staged ones, but