git操作基础 删除文件夹

git中删除文件夹的方法简单整理如下:

命令行

项番 命令
No.1 git rm -rf 文件夹名
No.2 git add -A
No.3 git commit -m “delete dir”
No.4 git push

执行例

[[email protected] src]# git rm -rf static
rm ‘src/static/bootstrap/css/bootstrap-theme.css‘
rm ‘src/static/bootstrap/css/bootstrap-theme.css.map‘
rm ‘src/static/bootstrap/css/bootstrap-theme.min.css‘
rm ‘src/static/bootstrap/css/bootstrap-theme.min.css.map‘
rm ‘src/static/bootstrap/css/bootstrap.css‘
rm ‘src/static/bootstrap/css/bootstrap.css.map‘
rm ‘src/static/bootstrap/css/bootstrap.min.css‘
rm ‘src/static/bootstrap/css/bootstrap.min.css.map‘
rm ‘src/static/bootstrap/fonts/glyphicons-halflings-regular.eot‘
rm ‘src/static/bootstrap/fonts/glyphicons-halflings-regular.svg‘
rm ‘src/static/bootstrap/fonts/glyphicons-halflings-regular.ttf‘
rm ‘src/static/bootstrap/fonts/glyphicons-halflings-regular.woff‘
rm ‘src/static/bootstrap/fonts/glyphicons-halflings-regular.woff2‘
rm ‘src/static/bootstrap/js/bootstrap.js‘
rm ‘src/static/bootstrap/js/bootstrap.min.js‘
rm ‘src/static/bootstrap/js/npm.js‘
[[email protected] src]#

此时已经将本地文件夹同时删除
[[email protected] src]# ls static
ls: cannot access static: No such file or directory
[[email protected] src]#

[[email protected] src]# git add -A
[[email protected] src]# git commit -m "delete static dir"
[master b210daa] delete static dir
 16 files changed, 10045 deletions(-)
 delete mode 100644 src/static/bootstrap/css/bootstrap-theme.css
 delete mode 100644 src/static/bootstrap/css/bootstrap-theme.css.map
 delete mode 100644 src/static/bootstrap/css/bootstrap-theme.min.css
 delete mode 100644 src/static/bootstrap/css/bootstrap-theme.min.css.map
 delete mode 100644 src/static/bootstrap/css/bootstrap.css
 delete mode 100644 src/static/bootstrap/css/bootstrap.css.map
 delete mode 100644 src/static/bootstrap/css/bootstrap.min.css
 delete mode 100644 src/static/bootstrap/css/bootstrap.min.css.map
 delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.eot
 delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.svg
 delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.ttf
 delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.woff
 delete mode 100644 src/static/bootstrap/fonts/glyphicons-halflings-regular.woff2
 delete mode 100644 src/static/bootstrap/js/bootstrap.js
 delete mode 100644 src/static/bootstrap/js/bootstrap.min.js
 delete mode 100644 src/static/bootstrap/js/npm.js
[[email protected] src]# git push
Username for ‘https://github.com‘: liumiaocn
Password for ‘https://[email protected]‘:
Counting objects: 5, done.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 277 bytes | 0 bytes/s, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
To https://github.com/liumiaocn/cycle
   72009e4..b210daa  master -> master
[[email protected] src]#
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!希望你也加入到我们人工智能的队伍中来!http://www.captainbed.net

原文地址:https://www.cnblogs.com/firsttry/p/10100378.html

时间: 2024-11-01 20:29:52

git操作基础 删除文件夹的相关文章

git 删除分之以及删除文件夹

1.删除分支 1.1查看所有分支: git branch -a 得到结果: 1.2删除HEAD分支 git push origin --delete HEAD 2.删除文件夹 2.1 查看本地分支下的文件 ls 得到结果: 2.2删除raindow文件夹及其下所有的文件 git rm raindow -r -f 删除的效果: 2.3同步删除操作到远程分支: git commit -m "delete raindow" 同步的效果: 2.3提交分支: git push origin ma

iOS 创建文件夹,删除文件夹,对文件夹重命名的操作

iOS 创建文件夹,删除文件夹,对文件夹重命名的操作 by 伍雪颖 + (void)createFolder:(NSString *)folderName { NSString *imageDir = [NSString stringWithFormat:@"%@/Documents/%@", NSHomeDirectory(),folderName]; NSLog(@"HomeDir: %@",imageDir); BOOL isDir = NO; NSFileM

git基础③删除文件

在git中,删除文件也是一个修改操作. 删除文件管理器里面的文件用rm rm 1.php 这时 工作区和版本库的文件就不一致了 有2个选择 1.确实要从版本库中删除文件,那就git rm删除掉 并且 git commit git rm 1.php git commit -m "删除1.php" 2.不小心删除错误了, 如果一个文件已经被提交到版本库,那么你永远不用担心误删,但是要小心,你只能恢复文件到最新版本,你会丢失最近一次提交后你修改的内容.回退恢复到最新版本就好 git chec

创建文件夹删除文件夹等操作

文件夹的操作 一.新建文件夹的操作 public static void creatfolder(String fileName) { File file=new File(fileName); if (file.isDirectory()) { try { file.createNewFile(); } catch (IOException e) { } }else { System.out.println("这不是一个文件夹"); } 二.删除文件夹 public static v

C#_基础_文件夹操作类Directory(十七)

1 //using System.IO; 2 ///Directory:操作文件夹/目录的类,Directory是静态类 3 ///创建文件夹 4 Directory.CreateDirectory(@"D:\a"); 5 //注释:如果D盘中已经有了a文件夹,不会重新创建,不会覆盖 6 7 //删除文件夹 8 // FALSE :只能删除空文件夹,如果不是空文件夹会报错 9 Directory.Delete(@"D:\a",false); 10 //TTRUE:删

删除文件、删除文件夹操作

/** * 删除单个文件 * * @param sPath * 被删除文件的路径+文件名 * @return 单个文件删除成功返回true,否则返回false */ public static boolean deleteFile(String sPath) { Boolean flag = false; File file = new File(sPath); // 路径为文件且不为空则进行删除 if (file.isFile() && file.exists()) { file.del

asp.net如何删除文件夹及文件内容操作

static void DeleteDirectory(string dir) { if (Directory.GetDirectories(dir).Length == 0 && Directory.GetFiles(dir).Length == 0) { Directory.Delete(dir);//删除文件夹,若不删除文件夹则不需要 Directory.Delete(dir) return; } foreach (string var in Directory.GetDirecto

VC删除文件夹操作代码

VS删除文件夹 //功能: 删除非空目录文件夹 //输入: DirName 文件夹名 //输出: 删除是否成功 //功能: 迭代文件夹内文件,一个一个删除 BOOL DeleteDirectory(char *DirName) { CFileFind tempFind; char tempFileFind[200]; sprintf(tempFileFind,"%s\.",DirName); BOOL IsFinded=(BOOL)tempFind.FindFile(tempFileF

git 操作基础

1.git简介 2.git与svn比较 3.git工作流程 4.git分支管理 5.git使用 6.基础命令 7.过滤文件 8.创建远程gitee仓库 9.用本地仓库首次初始化远程仓库 10.remote源操作 11.多分支开发 一.git简介 什么是git:版本控制器 - 控制的对象是开发的项目代码 代码的开发时间轴:需求1 > 版本库1 > 需求2 > 版本库2 > 版本库1 > 版本库2 二.git与svn比较 svn的工作流程 git的工作流程 三.git工作流程(重