How to use git turtle without server (local single user)

I am looking for a simple tutorial on how to use tortoisegit without any server? I tried Google, but although many people mention that you can use tortoisegit without a server, no one explains how to do this, so any help is really appreciated!

+7
git tortoisegit
source share
3 answers

Plain:

     git init myFirstRepo
     cd myFirstRepo
     echo test> myFirstFile

Open Windows Explorer, and you will use the usual icons from the files that will be added to be perfect, etc.

TortoiseGit Context Menu

+8
source share

This is very similar to a server, except that all you do is make changes to your local repository - there will be no push to a remote source.

+4
source share

I started with http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html before heading to TortoiseGit. This guide explains something about what git does (not with too much detail, but enough). With this knowledge, it will be easier for you to get started with the graphical interface.

0
source share

All Articles