Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

28,444

Downloads of v 2.62.6:

153

Last Update:

06 Jun 2025

Package Maintainer(s):

Software Author(s):

  • Tom Payne

Tags:

configuration dotfile dotfiles

chezmoi

  • 1
  • 2
  • 3

2.62.6 | Updated: 06 Jun 2025

Downloads:

28,444

Downloads of v 2.62.6:

153

Software Author(s):

  • Tom Payne

chezmoi 2.62.6

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Tom Payne. The inclusion of Tom Payne trademark(s), if any, upon this webpage is solely to identify Tom Payne goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install chezmoi, run the following command from the command line or from PowerShell:

>

To upgrade chezmoi, run the following command from the command line or from PowerShell:

>

To uninstall chezmoi, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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://community.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

3. Copy Your Script

choco upgrade chezmoi -y --source="'INTERNAL REPO 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 chezmoi -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install chezmoi
  win_chocolatey:
    name: chezmoi
    version: '2.62.6'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'chezmoi' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.62.6'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller chezmoi
{
    Name     = "chezmoi"
    Version  = "2.62.6"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'chezmoi':
  ensure   => '2.62.6',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 06 Jun 2025.

Description

What does chezmoi do?

chezmoi helps you manage your personal configuration files (dotfiles, like ~/.gitconfig) across multiple machines.

chezmoi is helpful if you have spent time customizing the tools you use (e.g. shells, editors, and version control systems) and want to keep machines running different accounts (e.g. home and work) and/or different operating systems (e.g. Linux, macOS, and Windows) in sync, while still being able to easily cope with differences from machine to machine.

chezmoi scales from the trivial (e.g. copying a few dotfiles onto a Raspberry Pi, development container, or virtual machine) to complex long-lived multi-machine development environments (e.g. keeping any number of home and work, Linux, macOS, and Windows machines in sync). In all cases you only need to maintain a single source of truth (a single branch in git) and getting started only requires adding a single binary to your machine (which you can do with curl, wget, or scp).

chezmoi has strong support for security, allowing you to manage secrets (e.g. passwords, access tokens, and private keys) securely and seamlessly using a password manager and/or encrypt whole files with your favorite encryption tool.


tools\chocolateyinstall.ps1
# This file was generated by GoReleaser. DO NOT EDIT.
$ErrorActionPreference = 'Stop';

$version = $env:chocolateyPackageVersion
$packageName = $env:chocolateyPackageName
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
    packageName    = $packageName
    unzipLocation  = $toolsDir
    url64bit       = 'https://github.com/twpayne/chezmoi/releases/download/v2.62.6/chezmoi_2.62.6_windows_amd64.zip'
    checksum64     = '445d2e7adbc874b4a004b206d01c3db457d5241286c097118db979a8f06f7522'
    checksumType64 = 'sha256'
    url            = 'https://github.com/twpayne/chezmoi/releases/download/v2.62.6/chezmoi_2.62.6_windows_i386.zip'
    checksum       = 'aafdd5998e48e2dd2c85113f7d683ab65ed9ebcb4f75c4e63f481614641a9c11'
    checksumType   = 'sha256'
}

Install-ChocolateyZipPackage @packageArgs

Log in or click on link to see number of positives.

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.

Add to Builder Version Downloads Last Updated Status
chezmoi 2.62.5 171 Friday, May 23, 2025 Approved
chezmoi 2.62.4 152 Sunday, May 11, 2025 Approved
chezmoi 2.62.3 96 Tuesday, May 6, 2025 Approved
chezmoi 2.62.2 224 Friday, April 18, 2025 Approved
chezmoi 2.62.1 89 Sunday, April 13, 2025 Approved
chezmoi 2.62.0 123 Sunday, April 6, 2025 Approved
chezmoi 2.61.0 178 Saturday, March 22, 2025 Approved
chezmoi 2.60.1 189 Friday, March 7, 2025 Approved
chezmoi 2.60.0 170 Monday, February 24, 2025 Approved
chezmoi 2.59.1 179 Friday, February 7, 2025 Approved
chezmoi 2.59.0 157 Tuesday, January 28, 2025 Approved
chezmoi 2.58.0 176 Monday, January 13, 2025 Approved
chezmoi 2.57.0 193 Monday, December 30, 2024 Approved
chezmoi 2.56.0 153 Saturday, December 14, 2024 Approved
chezmoi 2.55.0 183 Monday, December 2, 2024 Approved
chezmoi 2.54.0 192 Saturday, November 9, 2024 Approved
chezmoi 2.53.1 148 Monday, October 28, 2024 Approved
chezmoi 2.53.0 47 Saturday, October 26, 2024 Approved
chezmoi 2.52.3 246 Monday, September 30, 2024 Approved
chezmoi 2.52.2 214 Tuesday, September 10, 2024 Approved
chezmoi 2.52.1 219 Thursday, August 15, 2024 Approved
chezmoi 2.52.0 150 Wednesday, August 7, 2024 Approved
chezmoi 2.51.0 185 Monday, July 15, 2024 Approved
chezmoi 2.50.0 186 Tuesday, July 2, 2024 Approved
chezmoi 2.49.1 139 Sunday, June 23, 2024 Approved
chezmoi 2.49.0 157 Monday, June 10, 2024 Approved
chezmoi 2.48.2 146 Friday, May 31, 2024 Approved
chezmoi 2.48.1 211 Sunday, May 12, 2024 Approved
chezmoi 2.48.0 178 Friday, April 26, 2024 Approved
chezmoi 2.47.4 204 Friday, April 12, 2024 Approved
chezmoi 2.47.3 174 Sunday, March 31, 2024 Approved
chezmoi 2.47.2 186 Sunday, March 17, 2024 Approved
chezmoi 2.47.1 183 Sunday, March 3, 2024 Approved
chezmoi 2.47.0 113 Sunday, February 25, 2024 Approved
chezmoi 2.46.1 224 Sunday, February 11, 2024 Approved
chezmoi 2.46.0 213 Thursday, January 25, 2024 Approved
chezmoi 2.45.0 167 Saturday, January 13, 2024 Approved
chezmoi 2.44.0 99 Wednesday, January 10, 2024 Approved
chezmoi 2.43.0 144 Tuesday, January 2, 2024 Approved
chezmoi 2.42.3 172 Saturday, December 16, 2023 Approved
chezmoi 2.42.2 170 Saturday, December 2, 2023 Approved
chezmoi 2.42.1 99 Wednesday, November 29, 2023 Approved
chezmoi 2.42.0 114 Sunday, November 26, 2023 Approved
chezmoi 2.41.0 189 Tuesday, November 14, 2023 Approved
chezmoi 2.40.4 230 Sunday, October 29, 2023 Approved
chezmoi 2.40.3 193 Thursday, October 12, 2023 Approved
chezmoi 2.40.2 125 Monday, October 9, 2023 Approved
chezmoi 2.40.0 221 Tuesday, September 19, 2023 Approved
chezmoi 2.39.1 200 Wednesday, September 6, 2023 Approved
chezmoi 2.39.0 133 Monday, September 4, 2023 Approved
chezmoi 2.38.0 201 Tuesday, August 22, 2023 Approved
chezmoi 2.37.0 188 Monday, August 7, 2023 Approved
chezmoi 2.36.1 146 Sunday, July 30, 2023 Approved
chezmoi 2.36.0 90 Saturday, July 29, 2023 Approved
chezmoi 2.35.2 155 Wednesday, July 19, 2023 Approved
chezmoi 2.35.1 81 Wednesday, July 19, 2023 Approved
chezmoi 2.35.0 111 Monday, July 17, 2023 Approved
chezmoi 2.34.3 190 Tuesday, July 4, 2023 Approved
chezmoi 2.34.2 202 Saturday, June 17, 2023 Approved
chezmoi 2.34.1 143 Sunday, June 11, 2023 Approved
chezmoi 2.34.0 154 Monday, June 5, 2023 Approved
chezmoi 2.33.6 233 Tuesday, May 16, 2023 Approved
chezmoi 2.33.5 162 Friday, May 12, 2023 Approved
chezmoi 2.33.4 194 Tuesday, May 2, 2023 Approved
chezmoi 2.33.3 205 Saturday, April 22, 2023 Approved
chezmoi 2.33.2 81 Friday, April 21, 2023 Approved
chezmoi 2.33.1 209 Saturday, April 8, 2023 Approved
chezmoi 2.33.0 218 Friday, March 24, 2023 Approved
chezmoi 2.32.0 216 Sunday, March 12, 2023 Approved
chezmoi 2.31.1 183 Thursday, March 2, 2023 Approved
chezmoi 2.31.0 202 Friday, February 17, 2023 Approved
chezmoi 2.30.1 160 Sunday, February 12, 2023 Approved
chezmoi 2.30.0 167 Tuesday, February 7, 2023 Approved
chezmoi 2.29.4 198 Tuesday, January 24, 2023 Approved
chezmoi 2.29.3 138 Friday, January 20, 2023 Approved
chezmoi 2.29.2 137 Monday, January 16, 2023 Approved
chezmoi 2.29.1 229 Tuesday, January 3, 2023 Approved
chezmoi 2.29.0 92 Monday, January 2, 2023 Approved
chezmoi 2.28.0 169 Monday, December 19, 2022 Approved
chezmoi 2.27.3 191 Monday, December 5, 2022 Approved
chezmoi 2.27.2 186 Friday, November 25, 2022 Approved
chezmoi 2.27.1 174 Monday, November 14, 2022 Approved
chezmoi 2.27.0 150 Wednesday, November 9, 2022 Approved
chezmoi 2.26.0 186 Monday, October 31, 2022 Approved
chezmoi 2.25.0 206 Thursday, October 13, 2022 Approved
chezmoi 2.24.0 223 Monday, September 26, 2022 Approved
chezmoi 2.23.0 167 Monday, September 19, 2022 Approved
chezmoi 2.22.1 218 Monday, September 5, 2022 Approved
chezmoi 2.22.0 149 Thursday, September 1, 2022 Approved
chezmoi 2.21.1 118 Tuesday, August 30, 2022 Approved
chezmoi 2.21.0 172 Wednesday, August 24, 2022 Approved
chezmoi 2.20.0 287 Friday, July 29, 2022 Approved
chezmoi 2.19.0 207 Monday, July 18, 2022 Approved
chezmoi 2.18.1 249 Friday, June 24, 2022 Approved
chezmoi 2.18.0 123 Tuesday, June 21, 2022 Approved
chezmoi 2.17.1 204 Monday, May 30, 2022 Approved
chezmoi 2.17.0 142 Thursday, May 26, 2022 Approved
chezmoi 2.16.0 141 Thursday, May 19, 2022 Approved
chezmoi 2.15.4 181 Tuesday, May 10, 2022 Approved
chezmoi 2.15.3 136 Monday, May 9, 2022 Approved
chezmoi 2.15.2 163 Sunday, May 1, 2022 Approved
chezmoi 2.15.1.20220412 234 Tuesday, April 12, 2022 Approved
chezmoi 2.15.1 124 Monday, April 11, 2022 Approved
chezmoi 2.15.0 178 Monday, April 4, 2022 Approved
chezmoi 2.14.0 253 Thursday, March 10, 2022 Approved
chezmoi 2.13.1 151 Friday, March 4, 2022 Approved
chezmoi 2.13.0 164 Saturday, February 26, 2022 Approved
chezmoi 2.12.0 226 Tuesday, February 15, 2022 Approved
chezmoi 2.11.2 193 Thursday, February 3, 2022 Approved
chezmoi 2.11.1 121 Thursday, February 3, 2022 Approved
chezmoi 2.11.0 117 Wednesday, February 2, 2022 Approved
chezmoi 2.10.1 183 Monday, January 24, 2022 Approved
chezmoi 2.10.0 173 Monday, January 17, 2022 Approved
chezmoi 2.9.5 191 Thursday, January 6, 2022 Approved
chezmoi 2.9.4 177 Monday, December 20, 2021 Approved
chezmoi 2.9.3 164 Monday, December 13, 2021 Approved
chezmoi 2.9.2 205 Thursday, December 2, 2021 Approved
chezmoi 2.9.1 127 Tuesday, November 30, 2021 Approved
chezmoi 2.9.0 146 Monday, November 29, 2021 Approved
chezmoi 2.8.0 170 Sunday, November 21, 2021 Approved
chezmoi 2.7.5 214 Monday, November 8, 2021 Approved
chezmoi 2.7.4 150 Tuesday, November 2, 2021 Approved
chezmoi 2.7.3 175 Saturday, October 23, 2021 Approved
chezmoi 2.7.2 146 Wednesday, October 20, 2021 Approved
chezmoi 2.7.1 140 Monday, October 18, 2021 Approved
chezmoi 2.7.0 152 Wednesday, October 13, 2021 Approved
chezmoi 2.6.1 170 Monday, October 4, 2021 Approved
chezmoi 2.6.0 103 Sunday, October 3, 2021 Approved
chezmoi 2.5.1 139 Thursday, September 30, 2021 Approved
chezmoi 2.5.0 146 Friday, September 24, 2021 Approved
chezmoi 2.4.0 191 Saturday, September 11, 2021 Approved
chezmoi 2.3.1 144 Thursday, September 9, 2021 Approved
chezmoi 2.3.0 136 Sunday, September 5, 2021 Approved
chezmoi 2.2.0 183 Monday, August 30, 2021 Approved
chezmoi 2.1.6 129 Monday, August 23, 2021 Approved
chezmoi 2.1.5 169 Thursday, August 12, 2021 Approved
chezmoi 2.1.4 147 Thursday, August 5, 2021 Approved
chezmoi 2.1.3 148 Sunday, August 1, 2021 Approved
chezmoi 2.1.2 170 Thursday, July 15, 2021 Approved
chezmoi 2.1.1 134 Sunday, July 11, 2021 Approved
chezmoi 2.1.0 187 Saturday, July 3, 2021 Approved
chezmoi 2.0.16 155 Monday, June 28, 2021 Approved
chezmoi 2.0.15 164 Friday, June 18, 2021 Approved
chezmoi 2.0.13 184 Friday, May 28, 2021 Approved
chezmoi 2.0.12 199 Tuesday, May 11, 2021 Approved
chezmoi 2.0.11 162 Tuesday, April 27, 2021 Approved
chezmoi 2.0.10 169 Thursday, April 15, 2021 Approved
chezmoi 2.0.9 189 Monday, April 5, 2021 Approved
chezmoi 2.0.8 127 Sunday, April 4, 2021 Approved
chezmoi 2.0.7 118 Wednesday, March 31, 2021 Approved
chezmoi 2.0.6 134 Wednesday, March 31, 2021 Approved
chezmoi 2.0.5 129 Tuesday, March 30, 2021 Approved
chezmoi 2.0.3 188 Monday, March 22, 2021 Approved
chezmoi 2.0.2 161 Friday, March 19, 2021 Approved
chezmoi 2.0.1 123 Thursday, March 18, 2021 Approved
chezmoi 2.0.0 121 Wednesday, March 17, 2021 Approved
chezmoi 1.8.11 230 Friday, February 5, 2021 Approved
chezmoi 1.8.10 212 Sunday, December 20, 2020 Approved
chezmoi 1.8.9 191 Friday, November 20, 2020 Approved
chezmoi 1.8.7 239 Saturday, October 10, 2020 Approved
chezmoi 1.8.6 190 Monday, September 28, 2020 Approved
chezmoi 1.8.5 192 Sunday, August 23, 2020 Approved
chezmoi 1.8.4 181 Wednesday, August 12, 2020 Approved
chezmoi 1.8.3 229 Friday, June 26, 2020 Approved
chezmoi 1.8.2 193 Tuesday, June 9, 2020 Approved
chezmoi 1.8.1 208 Friday, May 22, 2020 Approved

Changelog

Documentation updates

  • 23614001117ae940dbf979d963ec90d410474922 docs: Add link to blog
  • ec55f525cff9ea690cfd974480e44ce2cd824524 docs: Add link to github.com/matmaer/chezmoi-mousse

This package has no dependencies.

Discussion for the chezmoi Package

Ground Rules:

  • This discussion is only about chezmoi and the chezmoi 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 chezmoi, 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.
comments powered by Disqus