- Learn WebAssembly
- Mike Rourke
- 84字
- 2021-08-13 15:38:57
Installing Git on Windows
You can install Git using Chocolatey. Open up Command Prompt or PowerShell and run this command:
choco install git
You can check to ensure that the installation was successful by running this command:
git --version
You can bypass the confirmation messages by adding a -y to the end of the install command (for example, choco install git -y). You can also opt to always skip the confirmation by entering the
choco feature enable -n allowGlobalConfirmation command.
choco feature enable -n allowGlobalConfirmation command.
推薦閱讀
- Docker and Kubernetes for Java Developers
- vSphere High Performance Cookbook
- 算法大爆炸:面試通關步步為營
- 三維圖形化C++趣味編程
- VMware vSphere 6.7虛擬化架構實戰指南
- Java項目實戰精編
- Java編程技術與項目實戰(第2版)
- SQL經典實例(第2版)
- RabbitMQ Essentials
- Visual Foxpro 9.0數據庫程序設計教程
- Raspberry Pi Robotic Blueprints
- Python全棧開發:數據分析
- 像程序員一樣使用MySQL
- C++ Windows Programming
- Java入門經典