Using HEAD and git commit hash to differentiate between committed file versions
Introduction In an earlier article, we showed you how to look at differences between a file after you’ve made a change to it. In this article, we will talk about how to view differences between...
View Articlegit checkout command explained
Introduction In our previous article on working with the git version control system, we explained and familiarized the concept of the HEAD. In this article, we introduce you to the git checkout...
View Articlegit: What is detached HEAD state?
Introduction In our previous article on working with the git version control system, we explained how to use the git checkout command to retrieve previously committed versions of files from the git...
View ArticleUsing .gitignore to prevent files from being tracked
Introduction While working on our projects and using a version control system we could create and make use of a wide variety of different types of files. We may not want to keep track of every single...
View ArticleGithub and git integration
Introduction In the articles we’ve posted thus far, we’ve worked with git and saved changes by making commits on our local system. This is one way to use git i.e like a local backup system wherein we...
View ArticleGitHub and git integration: using ssh instead of https
Introduction In our last article, we demonstrated how we could mirror our repository from our local computer to GitHub and use https to push our repository data from our local computer to GitHub. In...
View ArticleWorking with branches in git (part 1)
Introduction Thus far we’ve explored different features of the GIT version control system like viewing a log of the git commit history, viewing differences between staged...
View ArticleWorking with branches in git (part 2)
Introduction In our previous article, we introduced you to the concept of branches in git. We explained what are branches and demonstrated how we could create a branch,...
View ArticlePulling changes from GitHub to Git
Introduction In our previous article, we demonstrated how we would push our git repositories from our local system out to GitHub. In this article, we will demonstrate how we would actually make...
View ArticleFixing git/github merge conflicts
Introduction In our previous article on the git version control system, we explained how we could modify our files in repositories in our GitHub account and then pull the changes from GitHub to the...
View Article