Intro to the Windows Git GUI – In Pictures
UPDATE (2008.12.24): Use TortoiseGit - when it is finished - instead of Git Gui.
The goal of this article is to start using Git for something. After you start using Git, for something, you can explore the features that make distributed version control useful. Please note, I already know Git Gui is a terrible interface.
This article assumes you have installed Git and Git Gui with the default settings.
General Knowledge:
GIT’s distributed model is based on the idea of repositories existing as standalone entities on your local machine with the ability to “pull” from other repositories. There is no central server. To start out, it is best to have one repository per project.

The goal of this article is to start using Git for something. After you start using Git, for something, you can explore the features that make distributed version control useful. Please note, I already know Git Gui is a terrible interface.
This article assumes you have installed Git and Git Gui with the default settings.
General Knowledge:
GIT’s distributed model is based on the idea of repositories existing as standalone entities on your local machine with the ability to “pull” from other repositories. There is no central server. To start out, it is best to have one repository per project.

Creating a new local repository:

Adding New Files:



Committing Changes:

Clone a repository:

Labels: computers, Programming
