Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Source Control Beginners

What would be the best version control system to learn as a beginner to source control?

like image 214
FortunateDuke Avatar asked Aug 22 '08 19:08

FortunateDuke


People also ask

What is an example of source control?

There are several different tools that implement different kinds of source control. For example, Git is a source control tool that sets lets you manage a project. Github is a web-site that repositories managed with Git are usually stored on. Mercurial is yet another source control tool.

How do I set up source control?

In Object Explorer, right-click the database you want to link to source control and then select Source Control > Link Database to Source Control. In the Link Database to Source Control wizard that opens, under Source control repository, click + to select a source control repository.

What is source control?

What is source control? Azure DevOps Services | Azure DevOps Server 2020 | Azure DevOps Server 2019 | TFS 2018 - TFS 2013 A source control system, also called a version control system, allows developers to collaborate on code and track changes. Source control is an essential tool for multi-developer projects.

What are the best source control tools?

Source control tools include: 1 Git 2 Perforce Helix Core 3 Subversion 4 ClearCase 5 Team Foundation Server 6 Mercurial More ...

What types of source control does Team Foundation support?

Our systems support two types of source control: Git (distributed) and Team Foundation Version Control (TFVC). TFVC is a centralized, client-server system. In both Git and TFVC, you can check in files and organize files in folders, branches, and repositories.

What is source control in DevOps?

One of the key factors that the success of DevOps depends upon is the ‘Source control’. It is the Source control or version control that brought the collaboration and transparency between both the Development and Operations team and brought them under a single tool and single umbrella. What is source control or version control?


2 Answers

Anything but Visual Source Safe; preferably one which supports the concepts of branching and merging. As others have said, Subversion is a great choice, especially with the TortoiseSVN client.

Be sure to check out (pardon the pun) Eric Sink's classic series of Source Control HOWTO articles.

like image 129
Ian Nelson Avatar answered Oct 20 '22 01:10

Ian Nelson


I'd suggest you try Subversion, for example with the 1-click SVN installer. Try searching SO for "Subversion", and you'll find loads of questions with answers that point to good tutorials.

Good luck!

like image 42
onnodb Avatar answered Oct 20 '22 02:10

onnodb