hello friends! new(ish)!

Git: Difference between revisions

From InstallGentoo Wiki v2
Jump to navigation Jump to search
>Mrsnooze
mNo edit summary
>Sysanon
mNo edit summary
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{stub}}
Git is a distributed version control system. It is designed to be fast, simple and powerful. It was created by [[Linus Torvalds]], after the authors of BitKeeper fucked them over, and is used to track the source code of the [[GNU/Linux|Linux]] kernel as well as its own source code. For a colourful and interesting talk about the creation of Git by Torvalds himself, check out [http://www.youtube.com/watch?v=4XpnKHJAok8 this video].
Git is a distributed version control system. It is designed to be fast, simple and powerful. It was created by [[Linus Torvalds]], after the authors of BitKeeper fucked them over, and is used to track the source code of the [[GNU/Linux|Linux]] kernel as well as its own source code. For a colourful and interesting talk about the creation of Git by Torvalds himself, check out [http://www.youtube.com/watch?v=4XpnKHJAok8 this video].


Git is one of the most popular development tools in use today. Lots of people contribute hack on code together through platforms such as GitHub and Bitbucket every day.
Git is one of the most popular development tools in use today. Lots of people contribute hack on code together through platforms such as GitHub and Bitbucket every day.
=Basic Git commands=
=== Clone the repository contents to your computer ===
git clone https://example.com/example.git


== Useful links ==
== Useful links ==
Line 9: Line 17:
[[Category:Software]]
[[Category:Software]]
[[Category:Programming]]
[[Category:Programming]]
[[Category:Terms]]

Latest revision as of 12:10, 8 December 2021

Git is a distributed version control system. It is designed to be fast, simple and powerful. It was created by Linus Torvalds, after the authors of BitKeeper fucked them over, and is used to track the source code of the Linux kernel as well as its own source code. For a colourful and interesting talk about the creation of Git by Torvalds himself, check out this video.

Git is one of the most popular development tools in use today. Lots of people contribute hack on code together through platforms such as GitHub and Bitbucket every day.

Basic Git commands

Clone the repository contents to your computer

git clone https://example.com/example.git

Useful links