Explore >> Select a destination


You are here

initialcommit.com
| | ryanharter.com
2.0 parsecs away

Travel
| | This is the second post in my Start to Finish series. You can check out my first post introducing the series and my tools here. What is SCM? SCM, or source code management, is a system that helps developers manage the source code for their projects. They have been around forever, things like CVS, Subversion (SVN) and now Git are the popular ones. SCMs allow you to version your source code, which is why they are also called Version Control Systems.
| | danielpecos.com
2.2 parsecs away

Travel
| | In a previous post, we have seen what Git is and its main characteristics. Now, we'll go more into detail about its functionality and we'll see what a usual day working with Git looks like. But before, some initial concepts: Repository: A working tree of files and directories which can be versioned, keeping track of every single modification made over the working tree, been able to move forward and backward in its history.
| | pedrorijo.com
2.2 parsecs away

Travel
| | Getting started with Git. Git basic commands. Everything you need to know to start using Git in your personal projects. Second part of a series of tutorials
| | initialcommit.com
3.6 parsecs away

Travel
| In this article, you will learn how to create a new Git repository, configure it, and commit changes to it.