Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between Chocolatey's Git packages?

Tags:

chocolatey

Chocolatey's package repository shows two popular packages for installing Git:

  • https://chocolatey.org/packages/git
  • https://chocolatey.org/packages/git.install

What's the difference between these two packages? How does one decide whether to use:

choco install git 

or:

choco install git.install 

Is one a superset of the other?

like image 740
jwfearn Avatar asked Feb 05 '15 21:02

jwfearn


People also ask

What are chocolatey packages?

Chocolatey has the largest online registry of Windows packages. Chocolatey packages encapsulate everything required to manage a particular piece of software into one deployment artifact by wrapping installers, executables, zips, and/or scripts into a compiled package file.

What are chocolatey install packages?

Chocolatey has the concept of virtual packages (coming) and meta packages. Virtual packages are packages that represent other packages when used as a dependency. Metapackages are packages that only exist to provide a grouping of dependencies.

Should I install chocolatey?

You don't need Chocolatey in order to do web development. Having Chocolatey makes the automated installation and updating of the applications on your machine easier. By itself, Chocolatey doesn't do anything with regard to updating the underlying operating system.


1 Answers

According to this forum thread the .install suffix is a discoverability artefact. Just use the shorter name:

choco install git 
like image 138
jwfearn Avatar answered Sep 21 '22 05:09

jwfearn