2005-10-23 18:15:34 +02:00
|
|
|
git-mv(1)
|
|
|
|
=========
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-mv - Move or rename a file, a directory, or a symlink
|
2005-10-23 18:15:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2008-06-30 08:09:04 +02:00
|
|
|
'git mv' <options>... <args>...
|
2005-10-23 18:15:34 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2013-07-30 21:50:03 +02:00
|
|
|
Move or rename a file, directory or symlink.
|
2005-12-05 09:15:44 +01:00
|
|
|
|
2011-12-12 08:51:24 +01:00
|
|
|
git mv [-v] [-f] [-n] [-k] <source> <destination>
|
|
|
|
git mv [-v] [-f] [-n] [-k] <source> ... <destination directory>
|
2005-12-05 09:15:44 +01:00
|
|
|
|
2005-10-23 18:15:34 +02:00
|
|
|
In the first form, it renames <source>, which must exist and be either
|
2005-11-27 22:08:33 +01:00
|
|
|
a file, symlink or directory, to <destination>.
|
2005-10-23 18:15:34 +02:00
|
|
|
In the second form, the last argument has to be an existing
|
|
|
|
directory; the given sources will be moved into this directory.
|
|
|
|
|
|
|
|
The index is updated after successful completion, but the change must still be
|
|
|
|
committed.
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-f::
|
2009-08-29 11:05:00 +02:00
|
|
|
--force::
|
2005-11-27 22:08:33 +01:00
|
|
|
Force renaming or moving of a file even if the target exists
|
2005-10-23 18:15:34 +02:00
|
|
|
-k::
|
|
|
|
Skip move or rename actions which would lead to an error
|
|
|
|
condition. An error happens when a source is neither existing nor
|
2013-01-21 20:16:20 +01:00
|
|
|
controlled by Git, or when it would overwrite an existing
|
2005-10-23 18:15:34 +02:00
|
|
|
file unless '-f' is given.
|
2008-06-08 03:36:09 +02:00
|
|
|
-n::
|
|
|
|
--dry-run::
|
2005-10-23 18:15:34 +02:00
|
|
|
Do nothing; only show what would happen
|
|
|
|
|
2011-12-12 08:51:24 +01:00
|
|
|
-v::
|
|
|
|
--verbose::
|
|
|
|
Report the names of files as they are moved.
|
|
|
|
|
2013-07-30 21:50:03 +02:00
|
|
|
SUBMODULES
|
|
|
|
----------
|
|
|
|
Moving a submodule using a gitfile (which means they were cloned
|
|
|
|
with a Git version 1.7.8 or newer) will update the gitfile and
|
|
|
|
core.worktree setting to make the submodule work in the new location.
|
2013-08-06 21:15:11 +02:00
|
|
|
It also will attempt to update the submodule.<name>.path setting in
|
|
|
|
the linkgit:gitmodules[5] file and stage that file (unless -n is used).
|
2013-07-30 21:50:03 +02:00
|
|
|
|
2005-10-23 18:15:34 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|