How do I undo ‘git add’ before commit?
You can undo git add before commit with which will remove it from the current index (the “about to be committed” list) without changing anything else. You can use without any file name to unstage all due changes. This can come in handy when there are too many files to be listed one by one in a … Read more