Explore >> Select a destination


You are here

www.sqlservercentral.com
| | ryanharter.com
12.1 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.
| | 4bes.nl
11.9 parsecs away

Travel
| | So you have been working with PowerShell. You want to get started with GIT. This is a step-by-step guide about how to start using GIT with PowerShell.
| | rob.cogit8.org
11.8 parsecs away

Travel
| | A streamlined approach to setting up Git version control for your Obsidian vault using SSH authentication.
| | zzamboni.org
77.6 parsecs away

Travel
| via http://www.codinginahurry.com/2011/02/05/three-levels-of-git-config/ Very nice explanation, viacoding in a hurry There are 3 levels of git config; project, global and system. project: Project configs are only available for the current project and stored in .git/config in the project's directory. global: Global configs are available for all projects for the current user and stored in ~/.gitconfig. system: System configs are available for all the users/projects and stored in /etc/gitconfig. Create a pr...