Last active
November 17, 2023 09:00
-
-
Save juanonsoftware/577291a053b133b500ec5990918f805e to your computer and use it in GitHub Desktop.
Use winget to install new application on Windows 11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Details of the package manager -> https://learn.microsoft.com/en-us/windows/package-manager/winget/ | |
1. Search for packages | |
- winget search git -> to search for packages containing "git" | |
2. From the output, I can see TortoiseGit. Its id is TortoiseGit.TortoiseGit | |
3. Run install command to install this app | |
- winget install TortoiseGit.TortoiseGit -> winget will download the app and display a confirmation to install | |
4. Now it's ready to use, right click on a folder / show more to see git menus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment