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追加操作は、ステージング領域にファイルを追加します。
[jerry@CentOS project]$ git status -s
?? string
?? string.c
[jerry@CentOS project]$ git add string.c
Gitはファイル名の前に疑問符を表示しています。明らかに、これらのファイルはGitの一部ではないため、Gitはこれらのファイルをどう処理するかを知りません。そのため、Gitはファイル名の前に疑問符を表示しています。
ジェリーはファイルをスタッシュエリアに追加しました。gitstatusコマンドはステージングエリアに存在するファイルを表示します。
[jerry@CentOS project]$ git status -s
A string.c
?? string
変更をコミットするために、彼はgitcommitコマンドに続いて-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
ログの詳細を表示するためにコミットした後、彼はgitlogコマンドを実行します。すべてのコミットの情報が、コミットID、コミット作成者、コミット日、およびSHA-1 コミットのハッシュ。
[jerry@CentOS project]$ git log
上記のコマンドは次の結果を生成します-
commit cbe1249b140dad24b2c35b15cc7e26a6f02d2277
Author: Jerry Mouse <[email protected]>
Date: Wed Sep 11 08:05:26 2013 +0530
Implemented my_strlen function
commit 19ae20683fc460db7d127cf201a1429523b0e319
Author: Tom Cat <[email protected]>
Date: Wed Sep 11 07:32:56 2013 +0530
Initial commit