Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
Downloads:
151,411
Downloads of v 2.49:
5,611
Last Update:
09 Nov 2016
Package Maintainer(s):
Software Author(s):
- Henk Westhuis
Tags:
gitextensions git gui adminGit Extensions (Install)
This is not the latest version of Git Extensions (Install) available.
Downloads:
151,411
Downloads of v 2.49:
5,611
Maintainer(s):
Software Author(s):
- Henk Westhuis
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Git Extensions (Install) 2.49
This is not the latest version of Git Extensions (Install) available.
All Checks are Passing
2 Passing Test
To install Git Extensions (Install), run the following command from the command line or from PowerShell:
To upgrade Git Extensions (Install), run the following command from the command line or from PowerShell:
To uninstall Git Extensions (Install), run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download gitextensions --internalize --version=2.49 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade gitextensions -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade gitextensions -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure gitextensions installed
win_chocolatey:
name: gitextensions
state: present
version: 2.49
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'gitextensions' do
action :install
version '2.49'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: gitextensions,
Version: 2.49,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller gitextensions
{
Name = 'gitextensions'
Ensure = 'Present'
Version = '2.49'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'gitextensions':
provider => 'chocolatey',
ensure => '2.49',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install gitextensions version="2.49" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator flcdrg on 14 Nov 2016.
Git Extensions is the only graphical user interface for Git that allows you control Git without using the commandline. It comes with a manual and video tutorials to get you started quickly.
$packageName = 'gitextensions'
$softwareName = 'Git Extensions*'
$installerType = 'msi'
$installArgs = '/quiet /norestart'
# In case you see \{\{DownloadUrlx64\}\} (without backslashes)
# after the commented lines, it’s intended.
$url = 'https://github.com/gitextensions/gitextensions/releases/download/v2.49/GitExtensions-2.49-Setup.msi'
$packageArgs = @{
packageName = $packageName
unzipLocation = $toolsDir
fileType = 'MSI'
url = $url
silentArgs = "/quiet /norestart"
validExitCodes= @(0, 3010, 1641)
}
Install-ChocolateyPackage @packageArgs
#------- ADDITIONAL SETUP -------#
$osBitness = Get-ProcessorBits
$is64bit = $osBitness -eq 64
$progFiles = [System.Environment]::GetFolderPath('ProgramFiles')
if ($is64bit -and $progFiles -notmatch 'x86') {$progFiles = "$progFiles (x86)"}
$gitexPath = Join-Path $progFiles 'GitExtensions'
Write-Host "Adding `'$gitexPath`' to the PATH so you can call gitex from the command line."
Install-ChocolateyPath $gitexPath
$env:Path = "$($env:Path);$gitexPath"
Log in or click on link to see number of positives.
- gitextensions.2.49.nupkg (9e0c29a9cc09) - ## / 56
- GitExtensions-2.49-Setup.msi (4c5053d62dd3) - ## / 55
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Git Extensions 3.4.3 | 11615 | Thursday, July 23, 2020 | Approved |
Git Extensions 3.4.2 | 3586 | Sunday, June 21, 2020 | Approved |
Git Extensions 3.4.1 | 1510 | Monday, June 15, 2020 | Approved |
Git Extensions 3.4 | 3611 | Tuesday, May 5, 2020 | Approved |
Git Extensions 3.3.1.20200120 | 6963 | Monday, January 20, 2020 | Approved |
Git Extensions 3.3.1 | 2531 | Sunday, January 5, 2020 | Approved |
Git Extensions 3.3 | 2107 | Saturday, December 14, 2019 | Approved |
Git Extensions 3.3-RC1 | 173 | Monday, December 2, 2019 | Approved |
Git Extensions 3.2.1 | 15410 | Friday, September 13, 2019 | Approved |
Git Extensions 3.2 | 9523 | Thursday, September 5, 2019 | Approved |
Git Extensions 3.1.1 | 6139 | Sunday, June 2, 2019 | Approved |
Git Extensions 3.1 | 2160 | Tuesday, May 14, 2019 | Approved |
Git Extensions 3.1-RC1 | 209 | Wednesday, May 1, 2019 | Approved |
Git Extensions 3.0.2 | 5370 | Saturday, February 16, 2019 | Approved |
Git Extensions 3.0.1 | 2662 | Sunday, January 20, 2019 | Approved |
Git Extensions 3.0.0.20181207 | 2885 | Friday, December 7, 2018 | Approved |
Git Extensions 3.0.0 | 622 | Friday, December 7, 2018 | Approved |
Git Extensions 3.0.0-rc2 | 327 | Sunday, November 11, 2018 | Approved |
Git Extensions 3.0.0-rc1 | 194 | Sunday, November 4, 2018 | Approved |
Git Extensions 3.0.0-beta1 | 333 | Monday, September 17, 2018 | Approved |
Git Extensions 2.51.5 | 4673 | Saturday, September 1, 2018 | Approved |
Git Extensions 2.51.4 | 3329 | Thursday, July 12, 2018 | Approved |
Git Extensions 2.51.03 | 1437 | Friday, June 29, 2018 | Approved |
Git Extensions 2.51.2.20180613 | 1816 | Wednesday, June 13, 2018 | Approved |
Git Extensions 2.50.2 | 186 | Thursday, July 12, 2018 | Approved |
Git Extensions (Install) 2.50.01 | 11049 | Monday, September 4, 2017 | Approved |
Git Extensions (Install) 2.50 | 271 | Monday, September 4, 2017 | Approved |
Git Extensions (Install) 2.49.03 | 7016 | Friday, April 7, 2017 | Approved |
Git Extensions (Install) 2.49.02 | 1781 | Wednesday, March 22, 2017 | Approved |
Git Extensions (Install) 2.49.01 | 338 | Sunday, March 12, 2017 | Approved |
Git Extensions (Install) 2.49 | 5611 | Wednesday, November 9, 2016 | Approved |
Git Extensions (Install) 2.48.05.20150903 | 7379 | Thursday, September 3, 2015 | Approved |
Git Extensions 2.48.05 | 6278 | Saturday, May 16, 2015 | Approved |
Git Extensions 2.48.04 | 339 | Saturday, May 9, 2015 | Approved |
Git Extensions 2.48.03 | 4258 | Sunday, December 14, 2014 | Approved |
Git Extensions 2.48.02 | 395 | Saturday, November 29, 2014 | Approved |
Git Extensions 2.48 | 1985 | Friday, October 17, 2014 | Approved |
GitExtensions 2.47.3 | 4968 | Sunday, November 17, 2013 | Approved |
GitExtensions 2.47.1 | 488 | Friday, November 15, 2013 | Approved |
GitExtensions 2.47 | 516 | Saturday, November 9, 2013 | Approved |
GitExtensions 2.46 | 3239 | Thursday, June 27, 2013 | Approved |
GitExtensions 2.45 | 441 | Wednesday, June 26, 2013 | Approved |
GitExtensions 2.44 | 1235 | Tuesday, February 19, 2013 | Approved |
GitExtensions 2.43 | 961 | Thursday, November 1, 2012 | Approved |
GitExtensions 2.42 | 508 | Monday, October 29, 2012 | Approved |
GitExtensions 2.41 | 613 | Sunday, September 23, 2012 | Approved |
GitExtensions 2.40 | 581 | Sunday, August 19, 2012 | Approved |
GitExtensions 2.33 | 594 | Friday, June 8, 2012 | Approved |
GitExtensions 2.32 | 471 | Friday, May 25, 2012 | Approved |
GitExtensions 2.28 | 725 | Tuesday, December 13, 2011 | Approved |
Ground Rules:
- This discussion is only about Git Extensions (Install) and the Git Extensions (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Git Extensions (Install), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.