Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Personal Version Controller

I'd like to know if there is any personal source controller, I'd like to have a repository on my machine without going through setting up a server, also I work with TeX files not any particular language and I'd like to have backups of my files the way sub version does

like image 245
Mark Avatar asked Jan 15 '09 10:01

Mark


People also ask

What are the three types of version control?

The types of VCS are: Local Version Control System. Centralized Version Control System. Distributed Version Control System.

What are different version controls?

Distributed and centralized version control Some popular version control systems are Git (distributed), Mercurial (distributed), and Subversion (centralized).

Which is version control tool?

Version control, also known as source control, is the practice of tracking and managing changes to software code. Version control systems are software tools that help software teams manage changes to source code over time.


2 Answers

If you install TortoiseSVN you have Subversion support included in your Windows Explorer. You don't need to install SVN because everything it needs is included in the setup. You can create a repository anywhere in the filesystem where you want.

like image 188
Xn0vv3r Avatar answered Sep 20 '22 10:09

Xn0vv3r


Git creates repositories that do not require a central server. Also, you can of course restore any previous version for tracked files which is—of course—what source control systems are all about. :)

Edit: There are other decentralized version control systems out there, e.g. Mercurial and Bazaar. They all offer more or less exactly the same features so it’s mostly a matter of personal taste.

like image 26
Bombe Avatar answered Sep 19 '22 10:09

Bombe