“GIT comprobar tipos de archivos específicos solamente” Código de respuesta

GIT comprobar tipos de archivos específicos solamente

# BASH (Non-Fish compliant script)
git checkout origin/master -- `git ls-tree origin/master -r --name-only | grep ".pex"`
gdfelt

tipos de archivos específicos de comprobación de git

# You don't need find or sed, you can use wildcards as git understands them (doesn't depend on your shell):
git checkout -- "*.xml"

# The quotes will prevent your shell to expand the command to only files in the current directory before its execution.
# You can also disable shell glob expansion (with bash) :

set -f
git checkout -- *.xml

# This, of course, will irremediably erase your changes!\
gdfelt

Respuestas similares a “GIT comprobar tipos de archivos específicos solamente”

Preguntas similares a “GIT comprobar tipos de archivos específicos solamente”

Más respuestas relacionadas con “GIT comprobar tipos de archivos específicos solamente” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código