Skip to main content

This version of GitHub Enterprise Server was discontinued on 2023-09-25. No patch releases will be made, even for critical security issues. For better performance, improved security, and new features, upgrade to the latest version of GitHub Enterprise Server. For help with the upgrade, contact GitHub Enterprise support.

Renaming a file

You can rename any file in your repository directly in GitHub Enterprise Server or by using the command line.

Platform navigation

Renaming a file on GitHub Enterprise Server

Renaming a file also gives you the opportunity to move the file to a new location

Tips:

  • If you try to rename a file in a repository that you don’t have access to, we will fork the project to your personal account and help you send a pull request to the original repository after you commit your change.
  • File names created via the web interface can only contain alphanumeric characters and hyphens (-). To use other characters, create and commit the files locally and then push them to the repository.
  • Some files, such as images, require that you rename them from the command line. For more information, see "Renaming a file."
  1. In your repository, browse to the file you want to rename.

  2. In the upper right corner of the file view, click to open the file editor.

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

  3. In the filename field, change the name of the file to the new filename you want. You can also update the contents of your file at the same time. Screenshot showing a repository file open for editing in the web browser. The file name field is active and shown in the foreground.

  4. In the "Commit message" field, type a short, meaningful commit message that describes the change you made to the file. You can attribute the commit to more than one author in the commit message. For more information, see "Creating a commit with multiple authors."

  5. Below the commit message fields, decide whether to add your commit to the current branch or to a new branch. If your current branch is the default branch, you should choose to create a new branch for your commit and then create a pull request. For more information, see "Creating a pull request."

    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.

  6. Click Commit changes or Propose changes.

Renaming a file using the command line

You can use the command line to rename any file in your repository.

Many files can be renamed directly on GitHub Enterprise Server, but some files, such as images, require that you rename them from the command line.

This procedure assumes you've already:

  1. Open TerminalTerminalGit Bash.

  2. Change the current working directory to your local repository.

  3. Rename the file, specifying the old file name and the new name you'd like to give the file. This will stage your change for commit.

    git mv OLD-FILENAME NEW-FILENAME
    
  4. Use git status to check the old and new file names.

    $ git status
    > # On branch YOUR-BRANCH
    > # Changes to be committed:
    > #   (use "git reset HEAD <file>..." to unstage)
    > #
    > #     renamed: OLD-FILENAME -> NEW-FILENAME
    > #
    
  5. Commit the file that you've staged in your local repository.

    $ git commit -m "Rename file"
    # 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.
    
  6. Push the changes in your local repository to your GitHub Enterprise Server instance.

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