Git-delete-operation

提供:Dev Guides
移動先:案内検索

Git-削除操作

トムは自分のローカルリポジトリを更新し、 src ディレクトリでコンパイルされたバイナリを見つけます。 コミットメッセージを表示した後、彼はコンパイルされたバイナリがJerryによって追加されたことに気付きます。

[tom@CentOS src]$ pwd
/home/tom/project/src

[tom@CentOS src]$ ls
Makefile string_operations string_operations.c

[tom@CentOS src]$ file string_operations
string_operations: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses
shared libs), for GNU/Linux 2.6.18, not stripped

[tom@CentOS src]$ git log
commit 29af9d45947dc044e33d69b9141d8d2dad37cc62
Author: Jerry Mouse <[email protected]>
Date: Wed Sep 11 10:16:25 2013 +0530

Added compiled binary

VCSは、実行可能バイナリではなく、ソースコードのみを格納するために使用されます。 そこで、トムはこのファイルをリポジトリから削除することにしました。 さらに操作するために、彼は git rm コマンドを使用します。

[tom@CentOS src]$ ls
Makefile string_operations string_operations.c

[tom@CentOS src]$ git rm string_operations
rm 'src/string_operations'

[tom@CentOS src]$ git commit -a -m "Removed executable binary"

[master 5776472] Removed executable binary
1 files changed, 0 insertions(+), 0 deletions(-)
delete mode 100755 src/string_operations

コミット後、彼は自分の変更をリポジトリにプッシュします。

[tom@CentOS src]$ git push origin master

上記のコマンドは、次の結果を生成します。

Counting objects: 5, done.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 310 bytes, done.
Total 3 (delta 1), reused 0 (delta 0)
To [email protected]:project.git
29af9d4..5776472 master −> master