Blog Posts

Recent posts

Git - renormalizing a repository

less than 1 minute read

1 2 3 4 5 6 git rm --cached -r .# Remove everything from the index. git reset --hard# Write both the index and working directory from git's database. git add...