From a4ae1b67a7d1b46a0cb7c4b4b3e7b9ab805b4129 Mon Sep 17 00:00:00 2001 From: anirudhvs Date: Tue, 28 Apr 2020 12:41:13 -0400 Subject: [PATCH 1/4] Initial commit --- log.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 log.txt diff --git a/log.txt b/log.txt new file mode 100644 index 0000000..09c2b66 --- /dev/null +++ b/log.txt @@ -0,0 +1,15 @@ +COMMANDS USED FOR THE TASK + +1. git clone https://github.com/anirudhvs/github_task0.git + +This was used to clone the repository to local + +2. git checkout -b anirudh_vs + +Making a new branch with my name and switching to it. + +3. touch log.txt + +Used to create a file log.txt + + From 24cd10c4851a5cebdbeaeab8a6930c8460058b59 Mon Sep 17 00:00:00 2001 From: anirudhvs Date: Tue, 28 Apr 2020 12:42:36 -0400 Subject: [PATCH 2/4] Initial Commit --- ans.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 ans.txt diff --git a/ans.txt b/ans.txt new file mode 100644 index 0000000..9e12456 --- /dev/null +++ b/ans.txt @@ -0,0 +1 @@ +EGG From 26dcedab1532e7e50cca67f862490ce42cfd48f3 Mon Sep 17 00:00:00 2001 From: anirudhvs Date: Tue, 28 Apr 2020 12:43:27 -0400 Subject: [PATCH 3/4] Initial Commit --- why.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 why.txt diff --git a/why.txt b/why.txt new file mode 100644 index 0000000..f3a4f19 --- /dev/null +++ b/why.txt @@ -0,0 +1 @@ +New species are created as a reason of mutations. So the previos generation of hens would have laid an egg with the mutation that led to the formation of hens. From 26d539294b4fe50797496c6fe7e62871c43c9c8f Mon Sep 17 00:00:00 2001 From: anirudhvs Date: Tue, 28 Apr 2020 12:57:32 -0400 Subject: [PATCH 4/4] Inital Commit --- log.txt | 50 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 48 insertions(+), 2 deletions(-) diff --git a/log.txt b/log.txt index 09c2b66..373e5ac 100644 --- a/log.txt +++ b/log.txt @@ -8,8 +8,54 @@ This was used to clone the repository to local Making a new branch with my name and switching to it. -3. touch log.txt +3. git add log.txt -Used to create a file log.txt +Add file to branch +4. git commit +Used to commit changes + +5.git checkout -b oneword + +New branch and switched to it + +6. git add ans.txt + +Add file to branch + +7. git commit + +Commit changees + +8. git checkout -b reason + +New branch and switched to it + +9. git add why.txt + +Add file to branch + +10. git commit + +Commit changes + +11. git checkout master + +Switching to master branch + +12. git merge anirudh_vs + +Merging branches + +13. git merge oneword + +Merge branches + +14. git merge reason + +Merge branches + +15. git push + +Pushing to remote repo.