
git-clean
List of commands for git-clean:
-
git-clean:tldr:16596 git-clean: Show what files would be deleted without actually deleting them.$ git clean --dry-runtry on your machineexplain this command
-
git-clean:tldr:42f67 git-clean: Delete files that are not tracked by Git.$ git cleantry on your machineexplain this command
-
git-clean:tldr:4ffea git-clean: Forcefully delete files that are not tracked by Git.$ git clean -ftry on your machineexplain this command
-
git-clean:tldr:a0972 git-clean: Delete untracked files, including ignored files in `.gitignore` and `.git/info/exclude`.$ git clean -xtry on your machineexplain this command
-
git-clean:tldr:cc20f git-clean: Forcefully delete directories that are not tracked by Git.$ git clean -fdtry on your machineexplain this command
-
git-clean:tldr:ce0c8 git-clean: Interactively delete files that are not tracked by Git.$ git clean -itry on your machineexplain this command