In this post I would like to provide basic usage steps and a list of some basic Git commands to get you going with Git. First let me give you basic information about git. Git is a version control system that is widely […]
Adding an existing project or initial push to GitHub using the command line?
In this post I would like to show you ,How to Add an existing project to GitHub using the command line with simple steps. Open Terminal (for Mac and Linux users) or the command prompt (for Windows users). Change the current […]
Force Git to overwrite local files on pull
git fetch downloads the latest from remote without trying to merge or rebase anything. Then the git reset resets the master branch to what you just fetched. The –hard option changes all the files in your working […]