Re: [PATCH] push: fix typo in advice message

2013-07-28 Thread Jeff King
On Mon, Jul 29, 2013 at 06:23:52AM +0200, Ralf Thielow wrote: > Signed-off-by: Ralf Thielow > --- > builtin/push.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/builtin/push.c b/builtin/push.c > index 6d36c24..04abd2d 100644 > --- a/builtin/push.c > +++ b/builtin/push

[PATCH] l10n: de.po: translate 99 new messages

2013-07-28 Thread Ralf Thielow
Translate 99 new messages came from git.pot update in 28b3cff (l10n: git.pot: v1.8.4 round 1 (99 new, 46 removed)). Signed-off-by: Ralf Thielow --- po/de.po | 366 +++ 1 file changed, 180 insertions(+), 186 deletions(-) diff --git a/po

[PATCH] git-rebase: fix typo

2013-07-28 Thread Ralf Thielow
Signed-off-by: Ralf Thielow --- git-rebase.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-rebase.sh b/git-rebase.sh index 0039ecf..8d7659a 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -159,7 +159,7 @@ finish_rebase () { die "$(eval_gettext

[PATCH] push: fix typo in advice message

2013-07-28 Thread Ralf Thielow
Signed-off-by: Ralf Thielow --- builtin/push.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/push.c b/builtin/push.c index 6d36c24..04abd2d 100644 --- a/builtin/push.c +++ b/builtin/push.c @@ -250,7 +250,7 @@ static const char message_advice_ref_fetch_first[] =

Re: [PATCH] imap-send: use Apple's Security framework for base64 encoding

2013-07-28 Thread Jonathan Nieder
Hi, David Aguilar wrote: > --- a/imap-send.c > +++ b/imap-send.c > @@ -22,14 +22,11 @@ > * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA > */ > > -#include "cache.h" > -#include "exec_cmd.h" > -#include "run-command.h" > -#include "prompt.h" > #ifdef NO_OPENSSL

Re: [PATCH V2] TIG: Fix to reinstate proper operation with no arguments

2013-07-28 Thread Jonas Fonseca
On Wed, Jul 24, 2013 at 8:50 AM, Drew Northup wrote: > This time, knowing for sure now that format->buf is not being used in > the extant code path for any other purpose, I went ahead and > initialized the whole thing to be sure that we don't find any other > ghosts hiding in that buffer between u

Re: What's cooking in git.git (Jul 2013, #07; Sun, 21)

2013-07-28 Thread Jens Lehmann
Am 22.07.2013 22:47, schrieb Jens Lehmann: > Am 22.07.2013 09:48, schrieb Duy Nguyen: >> On Mon, Jul 22, 2013 at 2:32 PM, Jens Lehmann wrote: >>> Am 22.07.2013 08:57, schrieb Junio C Hamano: * jl/submodule-mv (2013-04-23) 5 commits . submodule.c: duplicate real_path's return value

[PATCH] editor: use canonicalized absolute path

2013-07-28 Thread Ramkumar Ramachandra
By improving the relative_path() algorithm, e02ca72 (path.c: refactor relative_path(), not only strip prefix, 2013-06-25) uncovered a latent bug. While most editor applications like cat and vim handle non-canonicalized relative paths fine, emacs does not. This is due to a long-standing bug in ema

[PATCH v3] gitk: Add a "Save file as" menu item

2013-07-28 Thread Andreas Amann
Previously, there was no easy way to save a particular file from the currently selected revision. This patch adds a menu item "Save file as" to the file list popup menu, which opens a file selection dialog to determine the name under which a file should be saved. The default filename is of the fo

Re: [BUG] git_path() returns relative paths

2013-07-28 Thread Ramkumar Ramachandra
Duy Nguyen wrote: > How about something like this as a workaround for emacs? Even if we do manage to patch Emacs now, we still need to support older versions: so yeah, this is an urgent candidate for maint. I'm waiting for the word from Emacs-Devel before writing out a commit message. -- To unsub

Re: [BUG] git_path() returns relative paths

2013-07-28 Thread Ramkumar Ramachandra
Duy Nguyen wrote: > In the no-submodules symlink test case, the path given to the editor > is .git/COMMIT_EDITMSG, no following ".." back in the symlink target. Thanks, and sorry about the stupidity. I just patched builtin/commit.c to check this. > This bug can be reproduced without git involved

Re: [BUG] git_path() returns relative paths

2013-07-28 Thread Duy Nguyen
On Sun, Jul 28, 2013 at 3:49 PM, Ramkumar Ramachandra wrote: > Duy Nguyen wrote: >> I think instead of letting the kernel walk the path, emacs does it by >> itself. > > If this were true, shouldn't we be able to reproduce the behavior with > my no-submodules symlink testcase? How can it resolve s

Re: [PATCH] builtins: search builtin commands via binary search.

2013-07-28 Thread Eric Sunshine
On Sat, Jul 27, 2013 at 4:49 AM, Stefan Beller wrote: > I was fiddling around with make now to include the suggestion of Eric to > check the arguments for being sorted in make. However I do not > seem to fully understand the syntax yet. > My approach would have been: > > sorted_internal_cmds: git.

Re: [BUG] git_path() returns relative paths

2013-07-28 Thread Ramkumar Ramachandra
Duy Nguyen wrote: > I think instead of letting the kernel walk the path, emacs does it by > itself. If this were true, shouldn't we be able to reproduce the behavior with my no-submodules symlink testcase? How can it resolve symlinks in one case, and not in the other case? -- To unsubscribe from