Git Workflow

Git

Workspace:工作区,Index / Stage:暂存区,Repository:仓库区(或本地仓库),Remote:远程仓库 远程仓库 安装,windows需要处理换行符 sudo yum install git 设置姓名和邮箱地址 git config --global user.name "Vane Hsiung" git config --global user.email "[email protected]" 提高输出可读性 git config --global color.ui auto 设置文件 显示当前的 Git 配置 ...

December 12, 2021 · 39 min · Sakamoto Kurome