diff --git a/akash__singh.txt b/akash__singh.txt new file mode 100644 index 0000000..9442e69 --- /dev/null +++ b/akash__singh.txt @@ -0,0 +1,25 @@ +Commands used to complete this task: + +1> git status -> helps to check the status of the working tree. + +2> git clone -> clones repository from the github into a new folder in the computer. + +3> git branch -> helps to create a new branch of specified name. + +4> git checkout -> it helps us switch to the branch of name that we created before. + +5> git add -> adds file to the staging area for next commit. + +6> git merge -> it merges the branch into the current branch. + +7> git commit -m "" -> it commits the changes in the staged content as a new commit with the . + +8> touch -> creates a file of name inside the current branch. + +9> git config --global user.name -> sets a name identifying the user that commits changes. + +10> git config --global user.email -> sets an email address that will be associated with the user. + +11> git remote -> shows the name of url from where it came from, for eg: origin as default. + +12> git push -> pushes the branch to the remote repository on github. \ No newline at end of file