by Sarker | Dec 11, 2022 | Git
Introduction Git is undoubtedly the most popular version control system on planet Earth. No, I’m not exaggerating at all. But believe it or not, every good stuff has something weird and seemingly unnatural behind the scenes. Git has a command called git pull,...
by Sarker | Dec 1, 2022 | Git
Introduction Git has vastly revolutionized the way code management can work, don’t you agree? It has indeed presented ideas that encourage better code tracking and revival on crash, as well as pushing code from repository to repository without needing to lift your...
by Sarker | Nov 19, 2022 | Git
Introduction The git diff command is used to differentiate two sets of data inputs, and write down the changes in stdout which are required to merge the two inputs into one. At least, that’s what the diff function is meant for. But in git, the diff subcommand has a...
by Sarker | Nov 18, 2022 | Git
Introduction Whether or not you like it, git is case-sensitive. This gives rise to a lot of flexibility over the the names you could give to your branches in a repository, but at the same time, it raises concerns, such that lead many to see the following error...
by Sarker | Nov 16, 2022 | Git
Introduction The cherry-pick command in git allows you to move a group of commits from a given branch to another branch. This command gives rise to a different approach to git merge, and at times is used as an alternative for it. For instance, instead of using the git...
by Sarker | Nov 15, 2022 | Git
Introduction Heroku is a platform for developers which allows them to create, run and operate programs all within the Cloud. It is also known as a polyglot platform, due to the fact that it allows the deployment of applications that are written in any...