InterviewSolution
Saved Bookmarks
| 1. |
What differentiates between the commands git remote and git clone? |
|
Answer» git REMOTE command creates an entry in 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. |
|