Difference between revisions of "Git"

From Quantum kot
Jump to navigation Jump to search
(Created page with "Git is a distributed version control system: tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code....")
 
Line 1: Line 1:
 
Git is a distributed version control system: tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code.
 
Git is a distributed version control system: tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code.
# How to use
+
== Setup locally ==
 +
<syntaxhighlight lang="bash" highlight="1,5-7">
 +
git config --global user.email EMAIL
 +
</syntaxhighlight>
 +
 
 +
<syntaxhighlight lang="bash" highlight="1,5-7">
 +
git config --global user.name "NAME"
 +
</syntaxhighlight>
 +
 
 +
 
 +
 
 +
==How to use ==

Revision as of 08:43, 17 January 2023

Git is a distributed version control system: tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code.

Setup locally

git config --global user.email EMAIL
git config --global user.name "NAME"


How to use