1GIT-LFS-UNINSTALL(1) GIT-LFS-UNINSTALL(1)
2
3
4
6 git-lfs-uninstall - Remove Git LFS configuration
7
9 git lfs uninstall
10
12 Perform the following actions to remove the Git LFS configuration:
13
14 • Remove the "lfs" clean and smudge filters from the global Git
15 config.
16
17 • Uninstall the Git LFS pre-push hook if run from inside a Git
18 repository.
19
21 --local
22 Removes the "lfs" smudge and clean filters from the local
23 repository’s git config, instead of the global git config
24 (~/.gitconfig).
25
26 --worktree
27 Removes the "lfs" smudge and clean filters from the current working
28 tree’s git config, instead of the global git config (~/.gitconfig)
29 or local repository’s git config ($GIT_DIR/config). If multiple
30 working trees are in use, the Git config extension worktreeConfig
31 must be enabled to use this option. If only one working tree is in
32 use, --worktree has the same effect as --local. This option is only
33 available if the installed Git version is at least 2.20.0 and
34 therefore supports the "worktreeConfig" extension.
35
36 --system
37 Removes the "lfs" smudge and clean filters from the system git
38 config, instead of the global git config (~/.gitconfig).
39
40 --skip-repo
41 Skips cleanup of the local repo; use if you want to uninstall the
42 global lfs filters but not make changes to the current repo.
43
45 git-lfs-install(1), git-worktree(1).
46
47 Part of the git-lfs(1) suite.
48
49
50
51 GIT-LFS-UNINSTALL(1)