Git
基础教程Git 安装(Windows) 下载地址 安装教程 安装完成之后,找到这个 Git Bash 的命令行工具,用这个工具来使用 git。 Git 常用命令 初始化仓库(生成一个 .git 的隐藏文件) 1git init 添加远程仓库地址 1234git remote add origin "远程仓库地址"# eg:git remote add origin https://github.com/zxiaosi/Vue3-FastAPI.git 全局创建用户 (在 "your.name" "your.email" 内填入自己的姓名与邮箱) 12git config --global user.name "your.name"git config --global user.email "your.email" 检查信息是否写入成功 12git config user.namegit config user.email 拉取远程仓库指定分支代码 1234git...