Posted by admin at June 8, 2020
At the command line, first verify that you have Git installed: To install git check out the http://gradevision.in/github-installation/On all operating systems: On UNIX-like operating systems: If nothing is returned, or the command is not recognized, you may have to install Git on your system by downloading and running the installer. After installing Git, configure your […]
ContinuePosted by admin at May 27, 2020
Download the Git for Windows installer. Run the installer and follow the steps bellow: Click on “Next”. Click on “Next”. Unless you would like to change the install destination, then click “Browse”. Select your desired editor. Note: This is entirely up to you, pictured on the right is the choice of Atom, a free editor with built-in […]
ContinuePosted by admin at November 27, 2019
When you do a pull request on a branch, you can continue to work on another branch and make another pull request on this other branch. Before creating a new branch, pull the changes from upstream. Your master needs to be up to date. $ git pull Create the branch on your local machine and […]
Continue