Git
How to use git revert properly [4 Different Ways]
To revert or undo in git is facilitated by the git revert function. git revert command provides a unique way of undoing changes to a specific commit while …
git pull command examples [5 Methods]
Git pull is the process of fetching and merging committed changes from a remote project to your local server. It is combination of git fetch and git merge
git pull vs git pull --rebase explained with examples
Git pull downloads the newest changes from the remote repository and applies the changes to your local repository. by the use of git pull --rebase. The changes …
git push explained with practical examples [Beginners]
git push local changes to remote branch. git push remote tags. git push to delete remote branch. git push --force and --force-with-lease
git merge explained with simple examples [Beginners]
Git merge is simply the act of combining branches. Git usually seeks the unifying base among the two branches for successful merging to be effected.
