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.

Finding changed methods and functions in a pull request

You can quickly find proposed changes to a method or function in a pull request in .go, .js, .ts, .py, .php, and .rb files.

Anyone with read access to a repository can see a summary list of the functions and methods changes in certain files of a pull request.

The summary list of methods and functions is created from these supported file types:

  • Go
  • JavaScript (includes Typescript, Flow, and other types of JavaScript)
  • PHP
  • Python
  • Ruby
  1. Debajo del nombre de tu repositorio, da clic en Solicitudes de cambios.

    Issues tab

  2. In the list of pull requests, click the pull request where you'd like to find the changed functions and methods.

  3. En la solicitud de extracción, da clic en Archivos cambiados. Pestaña Archivos modificados de la solicitud de extracción

  4. To see a summary list of the changed functions and methods, click Jump to.... Jump to drop-down menu

  5. Select the changed function or method from the drop-down menu. You can also enter the name of the function or method to filter results. Filter function and methods

    Note: If you don't see the functions or methods you expected, confirm that your code compiles and doesn't contain errors. Only functions and methods changed in this pull request and found in .go, .js, .ts, .py, .php, and .rb files appear in the drop-down menu.

  6. You'll be redirected to the first line of the function or method you selected. view function or method in files changed

Further reading