macf00bar
macf00bar

Reputation: 675

how to use tortoise git without a server (local single user)

I'm looking for a simple tutorial for how to use tortoisegit without any server? I've tried google but, although a lot of people mention you can use tortoisegit without a server, no one explains how to do it so any help is greatly appreciated!

Upvotes: 7

Views: 15170

Answers (3)

VonC
VonC

Reputation: 1323793

Simple:

    git init myFirstRepo
    cd myFirstRepo
    echo test> myFirstFile

From here, open a Windows explorer and you will the usual icons from files modified, to be added, to be committed, and so on.

TortoiseGit Context Menu

Upvotes: 8

StefanPapp
StefanPapp

Reputation: 301

I would start with http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html before going to TortoiseGit. This tutorial explains roughly what git does (not with too much detail, but enough). With this knowledge, you will find it easier to get started with the GUI.

Upvotes: 0

Paddy
Paddy

Reputation: 33857

It's very much the same as with a server, except that all you are then doing is committing your changes to your local repository - there would be no pushing to a remote source.

Upvotes: 4

Related Questions