Done with reading the article. It's quiz time. Can you answer what is the difference between git pull and git clone? As both of the commands update the local repository.
git pull
git clone
git clone is the command that created a copy of the entire project from the main branch to local branch.
we use git pull when we already have the project, and we just want to update the newest version from main branch to our branch.
Well explained 👏
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Done with reading the article. It's quiz time. Can you answer what is the difference between
git pullandgit clone?As both of the commands update the local repository.
git cloneis the command that created a copy of the entire project from the main branch to local branch.we use
git pullwhen we already have the project, and we just want to update the newest version from main branch to our branch.Well explained 👏