diff --git a/ans.txt b/ans.txt new file mode 100644 index 0000000..416a125 --- /dev/null +++ b/ans.txt @@ -0,0 +1 @@ +The egg came first. \ No newline at end of file diff --git a/log.txt b/log.txt new file mode 100644 index 0000000..95716d8 --- /dev/null +++ b/log.txt @@ -0,0 +1,18 @@ +git clone URL: retrieve an entire repository from a hosted location via url +git branch firstname_lastname: creates a new branch +git branch: lists all branches and shows the active branch +git checkout firstnmae_lastname: switches from master branch(default branch) to firstname_lastname(now the active branch) +touch log.txt: creates this text file +git add log.txt: moves our file from workng copy to the staging area +git commit -m "Created file log.txt" : moves our file to the repository or saves this instant of time +with the string(message) provided to which we can come back to when wanted. +nano log.txt : opens the file for editting in nano text editor +CTrl+O : Save +Ctrl+ X: to exit nano +git branch : lists all the branches +git merge breason :merges and commits the chnage in the current branch +git remote: lists the remotes( links basically)that you have created +git add remote name URL :creates remote +git push remote branch : in order to push your work on computer to your github account.If its someone else's repo, it +creates a pull request which need to be confirmed. + diff --git a/reason.txt b/reason.txt new file mode 100644 index 0000000..09f5444 --- /dev/null +++ b/reason.txt @@ -0,0 +1,4 @@ +The expalnationto this dilemma lies in evolution.Although this is a famous paradox but we can say that we had +proto chickens before chickens who when mated laid an egg which turned out to be genetically mutated due to some +reason and we got chicks! So on phrasing a more correct question as which came first, chicken egg or chicken, +the answer would be chicken egg. \ No newline at end of file