gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 13:43:39 26 4
gpt4 key购买 nike

我正在尝试在 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 上的所有说法,我不应该这样做。

最佳答案

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

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

this thread :

As I understand docs if I set CYGWIN=noglob then command line arguments passed to Cygwin app WITHOUT changes.

That thread还要求 CYGWIN=glob:nobrace 以将更改限制为仅花括号,但我认为它在当前版本的 Cygwin 中还不起作用。

关于git - Cygwin 的 Git 命令正在从命令中删除大括号。我该如何防止这种情况?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20668519/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com