摘要: 1、增删文件 # 添加当前目录的所有文件到暂存区 $ git add . # 添加指定文件到暂存区 $ git add <file1> <file2> ... # 添加指定目录到暂存区,包括其子目录 $ git add <dir> # 删除工作区文件,并且将这次删除放入暂存区 $ git rm [f 阅读全文
posted @ 2023-11-09 13:00 ifanatic 阅读(47) 评论(1) 推荐(0) 编辑