“git discard All Change Command” Ответ

git отбросить все изменения

git clean -df
git checkout -- .
Mushy Monkey

Отбросьте все изменения

git stash save --keep-index --include-untracked
Kasmin Nicko

GIT Command Line Discard Change

git clean -dxn .  # dry-run to inspect the list of files-to-be-removed
git clean -dxf .  # REMOVE ignored/untracked files (in the current directory)
git checkout -- . # ERASE changes in tracked files (in the current directory)
Prickly Polecat

git discard All Change Command

git reset –hard		# Revert uncommitted changes in index
git clean -fxd		# Remove newly created files that not in index
Prickly Polecat

Ответы похожие на “git discard All Change Command”

Вопросы похожие на “git discard All Change Command”

Больше похожих ответов на “git discard All Change Command” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования