Git Review的变化 Git执行更改 Git 提交修改 Git Review的变化 在查看提交细节之后,Jerry意识到字符串长度不能为负,这就是他决定更改my_strlen函数的返回类型的原因。 Jerry使用 git log 命令查看日志详细信息。 [jerry@CentOS project]$ git log 上面的命令将产生以下结果。 commit cbe1249b140dad24b2c35b15cc7e26a6f02d2277 Author: Jerry Mouse <jerry@codingdict.com> Date: Wed Sep 11 08:05:26 2013 +0530 Implemented my_strlen function Jerry使用 git show 命令查看提交详细信息。git show命令将 SHA-1 提交ID作为参数。 [jerry@CentOS project]$ git show cbe1249b140dad24b2c35b15cc7e26a6f02d2277 上面的命令将产生以下结果: commit cbe1249b140dad24b2c35b15cc7e26a6f02d2277 Author: Jerry Mouse <jerry@codingdict.com> Date: Wed Sep 11 08:05:26 2013 +0530 Implemented my_strlen function diff --git a/string.c b/string.c new file mode 100644 index 0000000..187afb9 --- /dev/null +++ b/string.c @@ -0,0 +1,24 @@ +#include <stdio.h> + +int my_strlen(char *s) +{ + char *p = s; + + while (*p) + ++p; + return (p -s ); + } + 他将函数的返回类型从int更改为size_t。在测试代码之后,他通过运行 git diff 命令来检查他的更改。 [jerry@CentOS project]$ git diff 上面的命令将产生以下结果: diff --git a/string.c b/string.c index 187afb9..7da2992 100644 --- a/string.c +++ b/string.c @@ -1,6 +1,6 @@ #include <stdio.h> -int my_strlen(char *s) +size_t my_strlen(char *s) { char *p = s; @@ -18,7 +18,7 @@ int main(void) }; for (i = 0; i < 2; ++i) { - printf("string lenght of %s = %d\n", s[i], my_strlen(s[i])); + printf("string lenght of %s = %lu\n", s[i], my_strlen(s[i])); return 0; } Git diff在行之前显示 “+” 符号,这些符号是新添加的, “ - ” 表示删除的行。 Git执行更改 Git 提交修改