You can search wikis globally across all of GitHub Enterprise, or search wikis within a particular repository or organization. For more information, see "About searching on GitHub."
Sugerencia:
- Este artículo contiene búsquedas de ejemplo en el sitio web GitHub.com, pero puedes utilizar los mismos filtros de búsqueda en tu instancia de servidor de GitHub Enterprise.
- Para obtener una lista de sintaxis de búsqueda que puedas agregar a cualquier calificador para mejorar aún más tus resultados, consulta "Comprender la sintaxis de búsqueda".
- Utiliza comillas alrededor de los términos de búsqueda que contengan varias palabras. Por ejemplo, si deseas buscar propuestas con la etiqueta "In progress" (En curso), buscarías por la etiqueta
label:"in progress"
. Buscar no distingue entre mayúsculas y minúsculas.
Search within a user's or organization's repositories
To find wiki pages from all repositories owned by a certain user or organization, use the user
or org
qualifier. To find wiki pages from a specific repository, use the repo
qualifier.
Qualifier | Example |
---|---|
user:USERNAME | user:defunkt matches wiki pages from repositories owned by @defunkt. |
org:ORGNAME | org:github matches wikis in repositories owned by the GitHub organization. |
repo:USERNAME/REPOSITORY | repo:defunkt/gibberish matches wiki pages from @defunkt's "gibberish" repository. |
Search within a wiki page title or body text
The in
qualifier limits the search to the wiki page title or body text. Without the qualifier, both the title and body text are searched.
Qualifier | Example |
---|---|
in:title | usage in:title matches wiki page titles with the word "usage." |
in:body | installation in:body matches wiki pages with the word "installation" in their main body text. |
Search by last updated date
The updated
qualifier matches wiki pages that were last updated within the specified date range.
Las fechas son compatibles con calificadores de mayor qué, menor qué y rango.
Qualifier | Example |
---|---|
updated:YYYY-MM-DD | usage updated:>2016-01-01 matches wiki pages with the word "usage" that were last updated after 2016-01-01. |