Saved Bookmarks
| 1. |
What Is The Difference Between ‘git Remote’ And ‘git Clone’? |
|
Answer» ‘GIT remote add’ just creates an entry in your git config that SPECIFIES a name for a particular URL. While, ‘git clone’ creates a new git repository by copying and existing one LOCATED at the URI. ‘git remote add’ just creates an entry in your git config that specifies a name for a particular URL. While, ‘git clone’ creates a new git repository by copying and existing one located at the URI. |
|