Horje
How to revert uncommitted changes including files and folders? Code Example
How to revert uncommitted changes including files and folders?
# If you want to revert the changes only in current working directory
git checkout -- .

# discard anything (note: you have to be in the directory
# where all of the changes are located)
# or you can use the command on line 9, you can discard anything
# on the repo
git checkout -- *
git checkout -- :/

# or if you check the git status message after modifying a file 
# there is this command 
git restore <file>




Shell

Related
no module named psycopg2 Code Example no module named psycopg2 Code Example
how to check what version of cmake installed Code Example how to check what version of cmake installed Code Example
cmake version comand Code Example cmake version comand Code Example
bashrc file location in linux Code Example bashrc file location in linux Code Example
change master to main git Code Example change master to main git Code Example

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