代码之家  ›  专栏  ›  技术社区  ›  Alex KeySmith

git stash apply unknown选项:-encodedcommand错误

  •  6
  • Alex KeySmith  · 技术社区  · 6 年前

    使用命令应用git stash时:

    git stash apply stash@{1}

    正如 documentation on git stash .

    我收到错误:

    unknown option: -encodedCommand error
    
    1 回复  |  直到 6 年前
        1
  •  15
  •   Alex KeySmith    6 年前

    我不知道的是…

    我在powershell(使用 posh-git )当然{}表示powershell代码。

    因此,包围在“”中将确保powershell将其解释为字符串。

    git stash apply 'stash@{1}'
    

    值得注意的是,posh git在按下tab键时会自动完成名称(这让我意识到自己的错误)。