Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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!

like image 504
pastacool Avatar asked Nov 25 '09 10:11

pastacool


2 Answers

Simple:

  • Install Git (msysgit for Windows)
  • Install TortoiseGit and reboot
  • go into any directory you want
    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

like image 200
VonC Avatar answered Sep 22 '22 07:09

VonC


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.

like image 37
Paddy Avatar answered Sep 23 '22 07:09

Paddy