Extra commands
Last updated
Was this helpful?
Last updated
Was this helpful?
Extra
git diff --no-index --word-diff old_file.txt new_file.txt
[to sort]
hips://www.atlassian.com/git/tutorials
To stag a deleted file (the second option will only delete the file from git but will keep the local copy, for example, if a file type has been added to .gitignore, to delete files of this type already commited).
git reset --hard <commit>
git reset --hard origin/master
Don't use git checkout but use git switch and git restore.