git安装相关

一、注册Git账号

git工作台官网
注:要记下名字和密码

二、下载Git

从官方网站https://git-scm.com/downloads下载Git的安装包。安装包下载完成后,双击打开,按照指导操作即可完成安装过程。对于Windows平台,可能需要在安装过程中选择一些组件,如图形界面和命令行工具等
安装完成之后,打开CMD,输入:git --version
如果系统能正确识别git命令,并输出版本号,则说明Git已经正确安装。

三、配置git

git config --global user.name "your name"
git config --global user.email "your email"

四、vscode配置

https://blog.csdn.net/Code_King006/article/details/131646073

你可能感兴趣的:(教学,git)