1GIT-MV(1)                         Git Manual                         GIT-MV(1)
2
3
4

NAME

6       git-mv - Move or rename a file, a directory, or a symlink
7

SYNOPSIS

9       git mv <options>... <args>...
10
11

DESCRIPTION

13       Move or rename a file, directory or symlink.
14
15           git mv [-v] [-f] [-n] [-k] <source> <destination>
16           git mv [-v] [-f] [-n] [-k] <source> ... <destination directory>
17
18       In the first form, it renames <source>, which must exist and be either
19       a file, symlink or directory, to <destination>. In the second form, the
20       last argument has to be an existing directory; the given sources will
21       be moved into this directory.
22
23       The index is updated after successful completion, but the change must
24       still be committed.
25

OPTIONS

27       -f, --force
28           Force renaming or moving of a file even if the target exists
29
30       -k
31           Skip move or rename actions which would lead to an error condition.
32           An error happens when a source is neither existing nor controlled
33           by Git, or when it would overwrite an existing file unless -f is
34           given.
35
36       -n, --dry-run
37           Do nothing; only show what would happen
38
39       -v, --verbose
40           Report the names of files as they are moved.
41

SUBMODULES

43       Moving a submodule using a gitfile (which means they were cloned with a
44       Git version 1.7.8 or newer) will update the gitfile and core.worktree
45       setting to make the submodule work in the new location. It also will
46       attempt to update the submodule.<name>.path setting in the
47       gitmodules(5) file and stage that file (unless -n is used).
48

BUGS

50       Each time a superproject update moves a populated submodule (e.g. when
51       switching between commits before and after the move) a stale submodule
52       checkout will remain in the old location and an empty directory will
53       appear in the new location. To populate the submodule again in the new
54       location the user will have to run "git submodule update" afterwards.
55       Removing the old directory is only safe when it uses a gitfile, as
56       otherwise the history of the submodule will be deleted too. Both steps
57       will be obsolete when recursive submodule update has been implemented.
58

GIT

60       Part of the git(1) suite
61
62
63
64Git 2.18.1                        05/14/2019                         GIT-MV(1)
Impressum