git mv
命令用于移动或重命名文件,目录或符号链接。
简介
git mv <options>… <args>…
描述
移动或重命名文件,目录或符号链接。
git mv [-v] [-f] [-n] [-k] <source> <destination>
git mv [-v] [-f] [-n] [-k] <source> ... <destination directory>
在第一种形式中,它将重命名<source>
为<destination>
,<source>
必须存在,并且是文件,符号链接或目录。 在第二种形式中,最后一个参数必须是现有的目录; 给定的源(<source>
)将被移动到这个目录中。
索引在成功完成后更新,但仍必须提交更改。
示例
以下是一些示例 -
把一个文件:text.txt 移动到 mydir,可以执行以下操作 -
$ git mv text.txt mydir
运行上面的 git mv
其实就相当于运行了3
条命令:
$ mv test.txt mydir/
$ git rm test.txt
$ git add mydir