CSDN博客:https://blog.csdn.net/weixin_45606067

平时我们经常用的命令

# 在当前目录新建一个Git代码库
$ git init

# 克隆一个项目和它的整个代码历史(版本信息)
$ git clone [url]  # https://gitee.com/StarSea007/ssmbuild.git

# 查看指定文件状态
git status [filename]

# 查看所有文件状态
git status

# 添加所有文件到暂存区
git add .

# 提交暂存区中的内容到本地仓库 -m 提交信息
git commit -m "消息内容"  

# 将本地仓库中内容提交到远程仓库
git push

Git 思维导图

在这里插入图片描述