From 565d69a1c32ba85c0c27a34d2117217d5511d61e Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Thu, 25 May 2023 23:02:56 +0530 Subject: [PATCH] git-mv: update page (#10210) * git-mv: update page --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: pixel --- pages/common/git-mv.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/git-mv.md b/pages/common/git-mv.md index 746b5816b..33a2467b9 100644 --- a/pages/common/git-mv.md +++ b/pages/common/git-mv.md @@ -3,14 +3,14 @@ > Move or rename files and update the Git index. > More information: . -- Move file inside the repo and add the movement to the next commit: +- Move a file inside the repo and add the movement to the next commit: `git mv {{path/to/file}} {{new/path/to/file}}` -- Rename file and add renaming to the next commit: +- Rename a file or directory and add the renaming to the next commit: -`git mv {{filename}} {{new_filename}}` +`git mv {{path/to/file_or_directory}} {{path/to/destination}}` -- Overwrite the file in the target path if it exists: +- Overwrite the file or directory in the target path if it exists: -`git mv --force {{file}} {{target}}` +`git mv --force {{path/to/file_or_directory}} {{path/to/destination}}`