'\" t .\" Title: git-mv .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.76.1 .\" Date: 03/19/2016 .\" Manual: Git Manual .\" Source: Git 1.7.10.4 .\" Language: English .\" .TH "GIT\-MV" "1" "03/19/2016" "Git 1\&.7\&.10\&.4" "Git Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" git-mv \- Move or rename a file, a directory, or a symlink .SH "SYNOPSIS" .sp .nf \fIgit mv\fR \&... \&... .fi .sp .SH "DESCRIPTION" .sp This script is used to move or rename a file, directory or symlink\&. .sp .if n \{\ .RS 4 .\} .nf git mv [\-v] [\-f] [\-n] [\-k] git mv [\-v] [\-f] [\-n] [\-k] \&.\&.\&. .fi .if n \{\ .RE .\} .sp In the first form, it renames , which must exist and be either a file, symlink or directory, to \&. In the second form, the last argument has to be an existing directory; the given sources will be moved into this directory\&. .sp The index is updated after successful completion, but the change must still be committed\&. .SH "OPTIONS" .PP \-f, \-\-force .RS 4 Force renaming or moving of a file even if the target exists .RE .PP \-k .RS 4 Skip move or rename actions which would lead to an error condition\&. An error happens when a source is neither existing nor controlled by GIT, or when it would overwrite an existing file unless \fI\-f\fR is given\&. .RE .PP \-n, \-\-dry\-run .RS 4 Do nothing; only show what would happen .RE .PP \-v, \-\-verbose .RS 4 Report the names of files as they are moved\&. .RE .SH "GIT" .sp Part of the \fBgit\fR(1) suite