Git 学习笔记
Git 学习笔记 安装与配置 下载安装包:git-scm.com/downloads 配置: shell git config --global user.name "username" git config --global user.email "email@example.com" 基础语句 基本流程 切换到指定的路径下:cd git-learning 初始化 Git...
本文介绍了Git中分支的概念和用途,分支可以理解为平行宇宙,可以在不影响他人工作的情况下进行开发。通过创建自己的分支,在开发过程中可以随时提交代码,最后再合并到原来的分支上,既安全又不影响他人工作。