使用命令行将文件移到新位置
您可以使用命令行在仓库中移动文件,从旧位置删除文件,然后将其添加到新位置。
许多文件可在 GitHub Enterprise 上直接移动,但有些文件(如图像)需要从命令行移动。
此过程假设您已经:
- 在 GitHub Enterprise 上创建了仓库,或者有一个您要参与的由其他人所拥有的现有仓库
- 在您的计算机上本地克隆了仓库
-
在计算机上,将文件移至克隆仓库时在计算机上本地创建的目录中的新位置。
-
打开终端终端Git Bash终端。
-
使用
git status
检查新旧文件位置。$ git status > # On branch your-branch > # Changes not staged for commit: > # (use "git add/rm
..." to update what will be committed) > # (use "git checkout -- ..." to discard changes in working directory) > # > # deleted: /old-folder/image.png > # > # Untracked files: > # (use "git add ..." to include in what will be committed) > # > # /new-folder/image.png > # > # no changes added to commit (use "git add" and/or "git commit -a") -
将要提交的文件暂存到本地仓库。 This will delete, or
git rm
, the file from the old location and add, orgit add
, the file to the new location.$ git add . # Adds the file to your local repository and stages it for commit. 要取消暂存文件,请使用 'git reset HEAD YOUR-FILE'。
-
Use
git status
to check the changes staged for commit.$ git status > # On branch your-branch > # Changes to be committed: > # (use "git reset HEAD
..." to unstage) > # > # renamed: /old-folder/image.png -> /new-folder/image.png # Displays the changes staged for commit -
提交暂存在本地仓库中的文件。
$ git commit -m "Move file to new directory" # Commits the tracked changes and prepares them to be pushed to a remote repository. 要删除此提交并修改文件,请使用 'git reset --soft HEAD~1' 并再次提交和添加文件。
-
在本地仓库中推送更改到 您的 GitHub Enterprise Server 实例。
$ git push origin your-branch # 将本地仓库中的更改推送到指定为源的远程仓库