From bd49c63d47cf7eeea6324753e3e23e427c3f86ae Mon Sep 17 00:00:00 2001 From: Sahil Bali Date: Fri, 31 May 2024 00:13:57 +0530 Subject: [PATCH] Git_&_Github _Crash_Course.md --- Git & Github Crash Course.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Git & Github Crash Course.md diff --git a/Git & Github Crash Course.md b/Git & Github Crash Course.md new file mode 100644 index 00000000..f79f22a2 --- /dev/null +++ b/Git & Github Crash Course.md @@ -0,0 +1,16 @@ +1. Download the Git on your system. + + +2. Configuring Git + +After installing Git, you can also configure it - most importantly, you can set a username and email address that will be connected to all your code snapshots. + +- This can be done via: + +``` +git config --global user.name "your-username" + +git config --global user.email "your-email" +``` + +You can learn more about Git's configuration options here: https://git-scm.com/docs/git-config