首页 > 代码库 > git 最常用命令

git 最常用命令

右键 =》 Git Bash here

_________________________ 初始化仓库

 git init 仓库名

配置仓库

git config [--global/--system/--local] user.name "名字"git config [--global/--system/--local] user.email "xxx@xxx.com"

自己电脑 --global 即可

查看配置

git config -l

_________________________

理解3种状态:

1. 工作 —》2. 缓存—》3.仓库

_________________________

查看状态

$ git status

有红色文件名 则需,添加

$ git add .

添加所有后,提交

$ git commit -m"remark"

_________________________

查看文件提交日志

$ git log 文件名

恢复到仓库状态,重来

$ git checkout 文件名

_________________________

 

git 最常用命令