- Git 教程
- Git - 主页
- Git - 基本概念
- Git - 环境设置
- Git - 生命周期
- Git - 创建操作
- Git - 克隆操作
- Git - 执行更改
- Git - 审查更改
- Git - 提交更改
- Git - 推送操作
- Git - 更新操作
- Git - 存储操作
- Git - 移动操作
- Git - 重命名操作
- Git - 删除操作
- Git - 修复错误
- Git - 标签操作
- Git - 补丁操作
- Git - 管理分支
- Git - 处理冲突
- Git - 不同的平台
- Git - 在线存储库
- Git 有用的资源
- Git - 快速指南
- Git - 有用的资源
- Git - 讨论
- Git - 波斯语版本
Git - 执行更改
Jerry 克隆存储库并决定实现基本的字符串操作。所以他创建了 string.c 文件。添加内容后,string.c 将如下所示 -
#include <stdio.h> int my_strlen(char *s) { char *p = s; while (*p) ++p; return (p - s); } int main(void) { int i; char *s[] = { "Git tutorials", "Tutorials Point" }; for (i = 0; i < 2; ++i) printf("string lenght of %s = %d\n", s[i], my_strlen(s[i])); return 0; }
他编译并测试了他的代码,一切正常。现在,他可以安全地将这些更改添加到存储库中。
Git add 操作将文件添加到暂存区。
[jerry@CentOS project]$ git status -s ?? string ?? string.c [jerry@CentOS project]$ git add string.c
Git 在文件名前显示一个问号。显然,这些文件不是 Git 的一部分,这就是为什么 Git 不知道如何处理这些文件。这就是为什么 Git 在文件名前显示一个问号。
Jerry 已将文件添加到存储区域,git status 命令将显示暂存区域中存在的文件。
[jerry@CentOS project]$ git status -s A string.c ?? string
为了提交更改,他使用了 git commit 命令,后跟 –m 选项。如果我们省略 –m 选项。Git 将打开一个文本编辑器,我们可以在其中编写多行提交消息。
[jerry@CentOS project]$ git commit -m 'Implemented my_strlen function'
上述命令将产生以下结果 -
[master cbe1249] Implemented my_strlen function 1 files changed, 24 insertions(+), 0 deletions(-) create mode 100644 string.c
提交查看日志详细信息后,他运行 git log 命令。它将显示所有提交的信息,包括提交 ID、提交作者、提交日期和提交的SHA-1哈希值。
[jerry@CentOS project]$ git log
上述命令将产生以下结果 -
commit cbe1249b140dad24b2c35b15cc7e26a6f02d2277 Author: Jerry Mouse <jerry@tutorialspoint.com> Date: Wed Sep 11 08:05:26 2013 +0530 Implemented my_strlen function commit 19ae20683fc460db7d127cf201a1429523b0e319 Author: Tom Cat <tom@tutorialspoint.com> Date: Wed Sep 11 07:32:56 2013 +0530 Initial commit