TAG

Git

git revert to previous commit [Practical Examples]

git revert to previous commit can be done using different methods such as git checkout, git revert and git reset. We have covered examples using all these …

By stevealila · 7 min read · GIT

git pull force Explained [Easy Examples]

A git pull force procedure enables an update to a local repository with remote content even when you have pending commits.

By admin · 11 min read · GIT

git push force Explained [With Examples]

git push force is used to overwrite commits on the remote repository. Alternatively we can use git force with leave to make sure commits are not overwritten

By admin · 7 min read · GIT

git fetch vs git pull Explained [With Examples]

git pull performs both git fetch + git merge without any user prompt. git fetch wil only fetch the reefs and tags from remote repo but will not merge them to …

By admin · 12 min read · GIT