git-essentials
Essential Git commands and workflows for version control, branching, and collaboration.
# Git Essentials
Essential Git commands for 版本 control and collaboration.
## Initial 设置
```Bash # Configure 用户 git 配置 --全局 用户.name "Your Name" git 配置 --全局 用户.email "your@email.com"
# Initialize 仓库 git init
# 克隆 仓库 git 克隆 HTTPS://github.com/用户/repo.git git 克隆 HTTPS://github.com/用户/repo.git cust