]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-mv.txt
Merge branch 'maint'
[thirdparty/git.git] / Documentation / git-mv.txt
CommitLineData
1114b26e
JW
1git-mv(1)
2=========
3
4NAME
5----
c3f0baac 6git-mv - Move or rename a file, a directory, or a symlink
1114b26e
JW
7
8
9SYNOPSIS
10--------
b1889c36 11'git mv' <options>... <args>...
1114b26e
JW
12
13DESCRIPTION
14-----------
15This script is used to move or rename a file, directory or symlink.
63d34b0b 16
b1889c36
JN
17 git mv [-f] [-n] <source> <destination>
18 git mv [-f] [-n] [-k] <source> ... <destination directory>
63d34b0b 19
1114b26e 20In the first form, it renames <source>, which must exist and be either
b933e818 21a file, symlink or directory, to <destination>.
1114b26e
JW
22In the second form, the last argument has to be an existing
23directory; the given sources will be moved into this directory.
24
25The index is updated after successful completion, but the change must still be
26committed.
27
28OPTIONS
29-------
30-f::
f7aec129 31--force::
b933e818 32 Force renaming or moving of a file even if the target exists
1114b26e
JW
33-k::
34 Skip move or rename actions which would lead to an error
35 condition. An error happens when a source is neither existing nor
36 controlled by GIT, or when it would overwrite an existing
37 file unless '-f' is given.
3240240f
SB
38-n::
39--dry-run::
1114b26e
JW
40 Do nothing; only show what would happen
41
1114b26e
JW
42GIT
43---
9e1f0a85 44Part of the linkgit:git[1] suite