Cygwin的Git命令正在从命令中删除花括号。我该如何防止这种情况?

时间:2013-12-18 21:13:50

标签: git bash cygwin curly-braces

我正在尝试在cygwin中运行此命令:

$  git log --oneline --graph --decorate --all '@{u}..HEAD'
fatal: ambiguous argument '@u..HEAD': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions

从错误中可以看出,它认为我传递的是@u..HEAD而不是@{u}..HEAD。为什么要删除花括号,如何防止这种情况?

我正在使用bash:

$ echo $SHELL
/bin/bash

我认为这可能是执行此操作的git命令,因为如果我只使用echo,那么花括号就会停留:

$ echo '@{u}..HEAD'
@{u}..HEAD

以下是可能有用的其他信息:

$ git version
git version 1.7.9

$ type -a git
git is /c/cygwin/bin/git

$ git config -l
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
svn-remote.svn.url=https://myrepo/svn/results
svn-remote.svn.fetch=trunk:refs/remotes/trunk
svn-remote.svn.branches=branches/*:refs/remotes/*
svn-remote.svn.tags=tags/*:refs/remotes/tags/*

$ git rev-parse --symbolic-full-name @{u}
fatal: ambiguous argument '@u': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions
@u

此外,如果这些/c路径让您失望,请注意我的.bashrc文件中包含此行以方便我:mount c: /c

解决方法:如果我使用此命令代替git log --oneline --graph --decorate -- '@{u}..HEAD',则不会抱怨。注意“ - ”。但是根据IRC的所有说法,我不应该这样做。

1 个答案:

答案 0 :(得分:2)

检查pCYGWIN环境变量的值 也许在您的情况下,您可以尝试使用:

CYGWIN=noglob git log ... @{u}..HEAD

this thread中一样:

  

据我所知,如果我设置CYGWIN=noglob,那么命令行参数会传递给Cygwin app而不会发生变化。

That thread也要求CYGWIN=glob:nobrace以便将更改限制为仅大括号,但我认为它不适用于当前版本的Cygwin。