culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to add a remote repository?

    Answers

    git remote addCorrect
    git add remote
    git remote create
    git create remote

    The git remote add command followed by a name, commonly origin, and a URL is used to add a remote repository. For example, git remote add origin https://github.com/user/repository.git establishes a connection with the specified remote repository.