Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git Clone Vs Git Create Repository

What is the difference between ,

1. Select Git Clone ?

2. Select Git Create repository here .. and then Pull from repository ?

As shown like image.

Git Repo create

EDIT :

Actually we are going to use Review Board as our code review tool.That tool requires to create GIT Clone (1) method for create GIT.But currently we are using 2 option as for our developments.So because of that there must be fundamentally (behind the seen) differences of those 2 methods.What is that ?

like image 504
Sampath Avatar asked Feb 19 '23 09:02

Sampath


1 Answers

Git Clone just clones an existing repo (that other people already work) from a specified URL. On the other hand to create a new repo means start a new repo from the beginning.

like image 88
koninos Avatar answered Feb 21 '23 17:02

koninos