“Git Checkout Tylko określone typy plików” Kod odpowiedzi

Git Checkout Tylko określone typy plików

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

Git Checkout Ceed Ceed File Type

# 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

Odpowiedzi podobne do “Git Checkout Tylko określone typy plików”

Pytania podobne do “Git Checkout Tylko określone typy plików”

Więcej pokrewnych odpowiedzi na “Git Checkout Tylko określone typy plików” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu