From d25ca6e5c7b8155a8b953486362ea1ab243b8a5c Mon Sep 17 00:00:00 2001 From: Aman Jee Date: Fri, 19 Oct 2018 02:50:19 +0530 Subject: [PATCH] added some git basic commands --- Basic commands for git | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Basic commands for git b/Basic commands for git index 9557cf0..846714e 100644 --- a/Basic commands for git +++ b/Basic commands for git @@ -1,2 +1,11 @@ sir please add some basic command of git and some of great organistaions.... + +$ git clone repository address //replace repository address +$ git add . +$ git config user.name "name" //replace name by your name +$ git config user.email "email-address" +$ git commit -m "commit" //replace commit +$ git remote add origin +$ git push origin master +