Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Version control is software that allows a developer to keep a history of updates to a project, safely test new changes by creating a new branch and later pushing the changes to the main branch, and collaborating on the code with other developers.

Notifications You must be signed in to change notification settings

Programmer-Jack/IntroToGitHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

IntroToGitHub

A repository which will most definitely be remembered as one of the repositories of all time

What is version control software?

Version control is software that allows a developer to keep a history of updates to a project, safely test new changes by creating a new branch and later pushing the changes to the main branch, and collaborating on the code with other developers.


Below can be found a joke

A joke


And below this you'll find some links

Car Physics for Games by Marco Monster
Expressive Machines: Martin Stig Andersen’s award-winning game audio for INSIDE


And how about a code sample?

// .NET 8.0
// Assume class container and proper using namespaces are present

private float GetProductivity(int caffeineMilligrams) => Math.Pow(Math.e, (float)caffeineMilligrams);

public static void Main(string[] args)
{
    int caffeinemg = 100;
    Console.WriteLine(GetProductivity(caffeinemg));
}

Works for me. 1

Footnotes

  1. Kinda.

About

Version control is software that allows a developer to keep a history of updates to a project, safely test new changes by creating a new branch and later pushing the changes to the main branch, and collaborating on the code with other developers.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published