From cb148d059c6b24d0a0259f6660c1848729399452 Mon Sep 17 00:00:00 2001 From: Bastian Date: Wed, 8 Jan 2020 12:52:06 +0000 Subject: [PATCH] initial commit --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e36913e --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# How to Git started + +## Set up git +Set up your git info + +``` +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. +``` + +If you want to save your https credentials run +``` +git config --global credential.helper store +```