Git

From Quantum kot
Revision as of 08:43, 17 January 2023 by Eugene (talk | contribs)
Jump to navigation Jump to search

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