CATEGORY

GIT

How to perform git undo add PROPERLY [5 Examples]

Use any of the following commands to git undo add on uncommitted files: git rm --cached git reset -- git reset Use any of these commands to apply git undo add …

By stevealila · 7 min read · GIT

Git merge vs rebase and the problems they solve

Comparing git merge vs rebase, Git merge is best in pulling and pushing changes without caring about the linearity of the commit history. Git rebase is …

By stevealila · 6 min read · GIT