Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Answer #9

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions savar_ans.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Egg came first.

Explanation:
The egg came way before the chicken.The original chickens were formed from the mutation from the red jungle fowl where the
crossmating between the tro proto DNA species was responsible for the formation of an egg which over time gave rise to the domestic
chicken.So the chiken came first.
23 changes: 23 additions & 0 deletions savar_shirbhate.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
git clone <sop task file> //cloned file to local directory
cd //for moving into local directorygit
git checkout -b savar_shirbhate //new branch created and switched
touch log.txt //log.txt file created
/*File filled with inventory*/

git checkout -b answer //created a branch for the answer
touch savar_ans.txt //textfile for the answer
git checkout -b explanation //created a branch for the explanation
touch savar_ans.txt //for answer explanation
/* Add file details*/
git add savar_ans.txt //adding file to git staged
git add log.txt //adding file to git staged
git commit -m "" //commiting the existant files
git checkout answer //moved to answer branch
git merge explanation// merged the branches
git branch -d explanation //deleted excess branch
git checkout savar_shirbhate //switch branches
mv log.txt savar_shirbhate.txt//renaiming file
git push origin master//push details to forked repo
git push origin answer
git push upstream master//push details to mentor repo
git push upstream answer