+1 vote
in Git by
What is the difference between ‘git remote’ and ‘git clone’?

2 Answers

0 votes
by

‘git remote add’ creates an entry in your git config that specifies a name for a particular URL whereas ‘git clone’ creates a new git repository by copying an existing one located at the URL

0 votes
by

The ‘git remote add’ command is used to create an entry in your GIT configuration that specifies a name for a particular URL. ‘git clone’ is an altogether different command, which creates a new GIT repository by copying an existing one located at the URL.

...