Skip to main content
Frecuentemente publicamos actualizaciones de nuestra documentación. Es posible que la traducción de esta página esté en curso. Para conocer la información más actual, visita la documentación en inglés. Si existe un problema con las traducciones en esta página, por favor infórmanos.

Esta versión de GitHub Enterprise se discontinuó el 2022-06-03. No se realizarán lanzamientos de patch, ni siquiera para problemas de seguridad críticos. Para obtener un mejor desempeño, más seguridad y nuevas características, actualiza a la última versión de GitHub Enterprise. Para obtener ayuda con la actualización, contacta al soporte de GitHub Enterprise.

Renaming a file

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

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 using the command line."
  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. Edit file icon
  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. Editing a file name
  4. En la parte inferior de la página, teclea un mensaje de confirmación corto y significativo que describa el cambio que realizaste al archivo. Puedes atribuir el cambio a mas de un autor en el mensaje del mismo. Para obtener más información, consulta "Crear una confirmación con co-autores múltiples". Mensaje de confirmación de tu cambio
  5. Debajo de los campos del mensaje de confirmación, decide si deseas agregar tu confirmación a la rama actual o a una rama nueva. Si tu rama actual es la rama predeterminada, debes elegir crear una nueva rama para tu confirmación y después crear una solicitud de extracción. Para obtener más información, consulta "Crear una solicitud de extracción nueva". Confirmar opciones de rama
  6. Haz clic en Proponer cambio en el archivo. Botón para proponer cambio de archivo

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.

Este procedimiento supone que ya has:

  1. Abre la TerminalTerminalGit Bash.
  2. Cambia el directorio de trabajo actual por tu repositorio local.
  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 ..." to unstage)
    > #
    > #     renamed: old_filename -> new_filename
    > #
  5. Confirma el archivo que has preparado en tu repositorio local.
    $ git commit -m "Rename file"
    # Commits the tracked changes and prepares them to be pushed to a remote repository.
    # Para eliminar esta confirmación y modificar el archivo, usa 'git reset --soft HEAD~1' y confirma y agrega nuevamente el archivo.
  6. Sube los cambios en tu repositorio local a tu instancia de GitHub Enterprise Server.
    $ git push origin your-branch
    # Pushes the changes in your local repository up to the remote repository you specified as the origin