-1

I am trying to install git-flow on Ubuntu 10.04 but I am getting the following error:

eading package lists... Done
Building dependency tree       
Reading state information... Done
E: Couldn't find package git-flow

I have exected these instructions

sudo apt-get update
sudo apt-get install git-flow

But didn't work. I got the above error. I am able to install using the following commands

wget -P ~/Downloads http://launchpadlibrarian.net/84618376/git-flow_0.4.1-2_all.deb
sudo dpkg -i ~/Downloads/git-flow_0.4.1-2_all.deb

But I don't understand why the first set of commands doesn't work. What could be the possible issue.

Rakesh
  • 3,987
  • 10
  • 43
  • 68
  • Try asking this over on [ServerFault](http://serverfault.com/), the StackExchange network for Server Systems. – Matt Clark Aug 23 '13 at 02:42
  • Probaly `git-flow` is not avaible for `Ubuntu 10.4`, before trying to install it check if the package is avabile with `apt-cache search git-flow` – Atropo Aug 23 '13 at 14:47

2 Answers2

2

git-flow is available for 12.04, 13.04, 13.10 and 14.04. Unfortunately it has not been added to the 10.04 repository. Sad panda.

Matthew Franglen
  • 4,441
  • 22
  • 32
-1

In the default repositories of Ubuntu there is no git-flow package.

I'm currently not aware of any 3rd parties repositories from which you can install git-flow.

Peter van der Does
  • 14,018
  • 4
  • 38
  • 42