Git 删除操作

Posted kluan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 删除操作相关的知识,希望对你有一定的参考价值。

Tom 更新了自己的本地存储库并进入src目录下找到编译后的二进制。查看提交信息后,他意识到,编译后的二进制是由Jerry加入的。 .

[[email protected] src]$ pwd /home/tom/project/src [[email protected] src]$ ls Makefile string_operations string_operations.c [[email protected] 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 [[email protected] src]$ git log commit 29af9d45947dc044e33d69b9141d8d2dad37cc62 Author: Jerry Mouse <[email protected]> Date: Wed Sep 11 10:16:25 2013 +0530 Added compiled binary
 
VCS用于存储源代码,而不是只对可执行的二进制文件。因此,Tom 决定从资源库中删除此文件。对于进一步的操作,他使用git 的 rm命令。

[[email protected] src]$ ls Makefile string_operations string_operations.c [[email protected] src]$ git rm string_operations rm ‘src/string_operations’ [[email protected] 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

提交后,他推送了他的修改到版本库。

[[email protected] 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

PS:如果您想和业内技术大牛交流的话,请加qq群(521249302)或者关注微信公众 号(AskHarries),谢谢!

以上是关于Git 删除操作的主要内容,如果未能解决你的问题,请参考以下文章

git 命令删除文件操作

git rm 做啥而不是由操作系统和 git add 删除

Git入门到高级系列2-git高级操作

Git 中的 删除 还原操作

git --- 删除本地分支和远程分支操作

git --- 删除本地分支和远程分支操作