三年 Git 使用心得 & 常见问题整理

Lenix at 
三年 Git 使用心得 & 常见问题整理的配图
Git 流程图 Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库)Remote:远程仓库配置 Git# 配置全局用户 $ git config --global user.name "用户名" $ git config --global user.email "git 账号" # 配置别名 $ git config --global alias.co checkout $ git config --global ………