web-dev-qa-db-fra.com

zsh: commande non trouvée: git-flow

Je veux utiliser git-flow sur ma machine Ubuntu mais je reçois zsh: command not found: git-flow

Les étapes que j'ai suivies sont:

  1. Git-flow installé,

    Sudo apt-get install git-flow
    
  2. Après l'installation, j'utilise git-flow pour initialiser mon projet.

    git-flow init
    

    Mais je reçois une erreur ci-dessous

    zsh: command not found: git-flow
    

S'il vous plaît, aidez-moi à utiliser git-flow sur ma machine Ubuntu

2
Varun Sukheja

git-flow est une extension de Git, pas une commande séparée. Ajoute des crochets à la normale git. Essayer

git flow init

Vous pouvez lister les fichiers du paquet avec dpkg -L git-flow.

Si git-flow n'est pas installé, vous obtiendrez

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

The most similar commands are
        reflog
        show

Vérifiez également plugin oh-my-zsh de git-flow .

1
Pablo Bianchi