跳至主要内容

将文件移至新位置

您可以将文件移至 GitHub 上的不同目录,也可以使用命令行进行操作。

平台导航

除了更改文件位置外,您还可以更新文件内容,或在同一提交中为其重新命名

将文件移至 GitHub 上的新位置

提示:

  • 如果您尝试在您没有访问权限的仓库中移动文件,我们将把项目分叉到您的个人帐户,并在您提交更改后帮助您向原始仓库发送拉取请求
  • 某些文件,例如图像,需要您从命令行移动它们。有关更多信息,请参阅“将文件移动到新位置”。
  • 如果存储库有任何受保护的分支,您无法使用 GitHub 编辑或上传受保护分支中的文件。您可以使用 GitHub Desktop 将您的更改移动到新分支并提交它们。有关更多信息,请参阅“关于受保护的分支”和“在 GitHub Desktop 中提交和查看对项目的更改”。
  1. 在您的存储库中,浏览到您要移动的文件。

  2. 在文件视图的右上角,单击 以打开文件编辑器。

    Screenshot of a file. In the header, a button, labeled with a pencil icon, is outlined in dark orange.

    注意:您可以选择使用 github.dev 代码编辑器,而不是使用默认文件编辑器编辑和提交文件,方法是选择 下拉菜单并单击github.dev。您也可以通过单击GitHub Desktop 克隆存储库并在本地通过 GitHub Desktop 编辑文件。

    Screenshot of a file. In the header, a downwards-facing triangle icon is outlined in dark orange.

  3. 在文件名字段中,使用以下指南更改文件名

    • 要将文件移动到子文件夹中,请键入您想要的文件夹名称,后跟/。您的新文件夹名称将成为导航面包屑中的新项目。
    • 要将文件移动到高于文件当前位置的目录中,请将光标放在文件名字段的开头,然后键入../ 以向上跳转一个完整目录级别,或键入backspace 键以编辑父文件夹的名称。
  4. 单击提交更改...

  5. 在“提交消息”字段中,输入简短且有意义的提交消息,描述您对文件所做的更改。您可以在提交消息中将提交归因于多个作者。有关更多信息,请参阅“创建具有多个作者的提交”。

  6. 在提交消息字段下方,决定是将您的提交添加到当前分支还是新分支。如果您的当前分支是默认分支,您应该选择为您的提交创建一个新分支,然后创建一个拉取请求。有关更多信息,请参阅“创建拉取请求”。

    Screenshot of a GitHub pull request showing a radio button to commit directly to the main branch or to create a new branch. New branch is selected.

  7. 单击**提交更改**或**提出更改**。

使用命令行将文件移动到新位置

您可以使用命令行在存储库中移动文件,方法是从旧位置删除文件,然后将其添加到新位置。

许多文件可以直接在 GitHub 上移动,但某些文件(例如图像)需要您从命令行移动它们。

此过程假设您已经

  1. 在您的计算机上,将文件移动到您在本地克隆存储库时在计算机上创建的目录中的新位置。

  2. 打开终端终端Git Bash

  3. 使用git status检查旧文件和新文件的位置。

    $ git status
    > # On branch YOUR-BRANCH
    > # Changes not staged for commit:
    > #   (use "git add/rm <file>..." to update what will be committed)
    > #   (use "git checkout -- <file>..." to discard changes in working directory)
    > #
    > #     deleted:    /OLD-FOLDER/IMAGE.PNG
    > #
    > # Untracked files:
    > #   (use "git add <file>..." to include in what will be committed)
    > #
    > #     /NEW-FOLDER/IMAGE.PNG
    > #
    > # no changes added to commit (use "git add" and/or "git commit -a")
    
  4. 将文件暂存到您的本地存储库中以进行提交。这将从旧位置删除文件,或git rm,并将文件添加到新位置,或git add

    $ git add .
    # Adds the file to your local repository and stages it for commit.
    # To unstage a file, use 'git reset HEAD YOUR-FILE'.
    
  5. 使用git status检查已暂存以进行提交的更改。

    $ git status
    > # On branch YOUR-BRANCH
    > # Changes to be committed:
    > #   (use "git reset HEAD <file>..." to unstage)
    > #
    > #    renamed:    /old-folder/image.png -> /new-folder/image.png
    # Displays the changes staged for commit
    
  6. 提交您已在本地存储库中暂存的文件。

    $ git commit -m "Move file to new directory"
    # Commits the tracked changes and prepares them to be pushed to a remote repository.
    # To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.
    
  7. 将更改推送到GitHub.com 上的本地存储库。

    $ git push origin YOUR_BRANCH
    # Pushes the changes in your local repository up to the remote repository you specified as the origin