CodeSkills
← 返回发现

git-essentials

Essential Git commands and workflows for version control, branching, and collaboration.

来自 GitHub查看原文 →2026-03-24

# 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

相关 Skills