zsh:未找到命令:git-flow

zsh:未找到命令:git-flow

我想在我的 Ubuntu 机器上使用 git-flow,但是我得到了zsh: command not found: git-flow

我遵循的步骤如下:

  1. 安装了 git-flow,

    sudo apt-get install git-flow
    
  2. 安装后,我使用 git-flow 初始化我的项目

    git-flow init
    

    但我收到以下错误

    zsh: command not found: git-flow
    

请帮助我在 Ubuntu 机器上使用 git-flow

答案1

git-flow是 git 扩展,而不是单独的命令。添加钩子恢复正常git。尝试

git flow init

您可以使用 列出包中的文件dpkg -L git-flow

如果git-flow没有安装,你会得到

$ git flow init
git: 'flow' is not a git command. See 'git --help'.

The most similar commands are
        reflog
        show

另请检查git-flow oh-my-zsh 插件

相关内容