目录
(2) git status --- 命令用于查看在上次提交之后是否有对文件进行再次修改
(3) git diff -- 比较文件在暂存区和工作区的差异
(4) git commit --- 将暂存区内容添加到本地仓库中
(7) git mv --移动或重命名一个文件、目录或软连接
git blame - 以列表形式查看指定文件的历史修改记录
一、简介
Git 的工作就是创建和保存你项目的快照及与之后的快照进行对比。
Git 常用的是以下 6 个命令:git clone、git push、git add 、git commit、git checkout、git pull。
说明:
- workspace:工作区
- staging area:暂存区/缓存区
- local repository:版本库或本地仓库
- remote repository:远程仓库
提交与修改
下表列出了有关创建与提交你的项目的快照的命令:
命令 | 说明 |
---|---|
git add |
添加文件到暂存区 |
git status |
查看仓库当前的状态,显示有变更的文件。 |
git diff |
比较文件的不同,即暂存区和工作区的差异。 |
git commit |
提交暂存区到本地仓库。 |
git reset |
回退版本。 |
git rm |
将文件从暂存区和工作区中删除。 |
git mv |
移动或重命名工作区文件。 |
二、基本命令使用
(1) git add ---将该文件添加到暂存区
命令格式:
1、添加一个或多个文件到暂存区
git add [file1] [file2] ...
2、添加指定目录到暂存区,包括子目录
git add [dir]
3、添加当前目录下的所有文件到暂存区
git add .
使用案例:
$ touch testAdd.txt # 创建文件
$ touch hello.php # 创建文件
$ git status -s # 查看项目的当前状态
?? testAdd.txt
?? hello.php
$ git add testAdd.txt hello.php # 执行 git add 命令来添加文件
$ git status -s
A testAdd.txt
A hello.php
$ vim testAdd.txt # 修改文件内容
$ git status -s
AM testAdd.txt # AM 状态的意思是这个文件在将它添加到缓存之后又有改动
A hello.php
$ git add testAdd.txt # 执行 git add 命令来添加文件
$ git status -s
A testAdd.txt
A hello.php