From b52a5ea6038a12b39322a277fdf3aea35628f791 Mon Sep 17 00:00:00 2001 From: adityasharma2001 Date: Wed, 29 Apr 2020 16:39:35 +0530 Subject: [PATCH 1/9] first commit --- log.txt.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 log.txt.txt diff --git a/log.txt.txt b/log.txt.txt new file mode 100644 index 0000000..e9dbaff --- /dev/null +++ b/log.txt.txt @@ -0,0 +1,3 @@ +git clone //to clone the repo to local + +git branch // to create branch firstname_lastname From 899262b9bd4feb3df2afd09058fc2a1ae83c18ae Mon Sep 17 00:00:00 2001 From: adityasharma2001 Date: Wed, 29 Apr 2020 16:43:29 +0530 Subject: [PATCH 2/9] final commit to this branch --- log.txt.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/log.txt.txt b/log.txt.txt index e9dbaff..68b63df 100644 --- a/log.txt.txt +++ b/log.txt.txt @@ -1,3 +1,9 @@ -git clone //to clone the repo to local +git clone //to clone the repo from remote to local git branch // to create branch firstname_lastname + +git add . // to add the changes from working area to staging area + +git commit -m // to commit changes to local + + From 36ff6886b7a466c1b9fe57801bcd00b8f097efeb Mon Sep 17 00:00:00 2001 From: adityasharma2001 Date: Wed, 29 Apr 2020 16:56:30 +0530 Subject: [PATCH 3/9] overlook --- log.txt.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/log.txt.txt b/log.txt.txt index 68b63df..232f387 100644 --- a/log.txt.txt +++ b/log.txt.txt @@ -2,6 +2,8 @@ git clone //to clone the repo from remote to local git branch // to create branch firstname_lastname +git branch overlook // to change from one branch to another + git add . // to add the changes from working area to staging area git commit -m // to commit changes to local From 31fca61effebe95658d25eadb39df3cc04c028b7 Mon Sep 17 00:00:00 2001 From: adityasharma2001 Date: Wed, 29 Apr 2020 16:58:32 +0530 Subject: [PATCH 4/9] checkout --- log.txt.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log.txt.txt b/log.txt.txt index 232f387..6dff1c6 100644 --- a/log.txt.txt +++ b/log.txt.txt @@ -2,7 +2,7 @@ git clone //to clone the repo from remote to local git branch // to create branch firstname_lastname -git branch overlook // to change from one branch to another +git branch checkout // to change from one branch to another git add . // to add the changes from working area to staging area From 7692c1df2a6992c1b9a37a4ccb9231e790d5e0fa Mon Sep 17 00:00:00 2001 From: adityasharma2001 Date: Wed, 29 Apr 2020 17:19:09 +0530 Subject: [PATCH 5/9] answer --- answer.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 answer.txt diff --git a/answer.txt b/answer.txt new file mode 100644 index 0000000..35aeba1 --- /dev/null +++ b/answer.txt @@ -0,0 +1 @@ +Chicken \ No newline at end of file From dbe70a2fdd2639ab103cc37f592857691e0de907 Mon Sep 17 00:00:00 2001 From: adityasharma2001 Date: Wed, 29 Apr 2020 18:02:40 +0530 Subject: [PATCH 6/9] explanation --- eplanation.txt.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 eplanation.txt.txt diff --git a/eplanation.txt.txt b/eplanation.txt.txt new file mode 100644 index 0000000..8afed19 --- /dev/null +++ b/eplanation.txt.txt @@ -0,0 +1,3 @@ +Due to genetic mutation and evolution the so called proto-chicken(chicken like bird . it was genetically close to a chicken ) +so when the male and the female proto-chicken mate, the genes combined in such a way creating mutation that made the baby different from parents. +thus a proto chicken egg gave birth to chicken. From 35abded2ecd49e0c160ffd9c04371d1d6cdd02cc Mon Sep 17 00:00:00 2001 From: adityasharma2001 Date: Wed, 29 Apr 2020 18:05:12 +0530 Subject: [PATCH 7/9] Update explanation.txt.txt --- eplanation.txt.txt => explanation.txt.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename eplanation.txt.txt => explanation.txt.txt (100%) diff --git a/eplanation.txt.txt b/explanation.txt.txt similarity index 100% rename from eplanation.txt.txt rename to explanation.txt.txt From f88bdff070d962da4ece8e0dca504977c42b1466 Mon Sep 17 00:00:00 2001 From: adityasharma2001 Date: Wed, 29 Apr 2020 20:09:27 +0530 Subject: [PATCH 8/9] pull push --- log.txt.txt | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/log.txt.txt b/log.txt.txt index 6dff1c6..b747f2d 100644 --- a/log.txt.txt +++ b/log.txt.txt @@ -1,11 +1,20 @@ -git clone //to clone the repo from remote to local +git clone [url] //to clone the repo from remote to local -git branch // to create branch firstname_lastname +git branch [branch_name] // to create branch firstname_lastname -git branch checkout // to change from one branch to another +git checkout // to change from one branch to another git add . // to add the changes from working area to staging area git commit -m // to commit changes to local +git merge [branch_name] // to merge the branch to the current active branch + +git push // to publish the changes in local repo to remote repo + +git pull // to merge the changes in local repo of remote repo + +git mv [oldname] [newname] // to rename the file + + From 832a2ca6e026241773a7a8333e2f0485c22e1eb4 Mon Sep 17 00:00:00 2001 From: adityasharma2001 Date: Thu, 30 Apr 2020 23:52:03 +0530 Subject: [PATCH 9/9] renamed log and corrected merging --- log.txt.txt => _log.txt.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename log.txt.txt => _log.txt.txt (100%) diff --git a/log.txt.txt b/_log.txt.txt similarity index 100% rename from log.txt.txt rename to _log.txt.txt