Horje
git ignore local file changes Code Example
git ignore local file changes
# To skip local changes to files managed by git
$ git update-index --skip-worktree path/to/file
# To restore normal git behaviour
$ git update-index --no-skip-worktree path/to/file

# assume-unchanged can also be used, it's designed for local files that DON'T change
# git reset --hard will drop files ignored through assume-unchanged
$ git update-index --assume-unchanged path/to/file
$ git update-index --no-assume-unchanged path/to/file




Shell

Related
obs download ubuntu Code Example obs download ubuntu Code Example
git bash sign in Code Example git bash sign in Code Example
convert crt to pem Code Example convert crt to pem Code Example
jest vscode autocomplete Code Example jest vscode autocomplete Code Example
ubunutu stats top menu bar Code Example ubunutu stats top menu bar Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10