Difference between revisions of "Git"
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. | ||
| − | + | == 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"