Git 使用笔记

Write Comment

Git 使用笔记

卷心菜 卷心菜
Abstract [图解git flow开发流程](https://zhuanlan.zhihu.com/p/198066289) 记录了一些常用git命令 ## 命令 ```shell git init git config -e # 编辑配置文件

图解git flow开发流程

记录了一些常用git命令

命令

git init
git config -e # 编辑配置文件
git config user.name 'username'
git config user.email 'email'
git clone [-b] branch xxx.git 拉取
git status 
git log [-p]/[-n]  ---n代表数字
git log --stat ---简单信息
git log --name-status
Login required to read the rest of the content

登录 to comment~