Я собираю некоторую документацию и не имею доступа к ненастроенной машине, чтобы проверить это сам
Мне интересно, нужна ли вам учетная запись GitHub для клонирования хранилища из GitHub на локальный компьютер.
Я собираю некоторую документацию и не имею доступа к ненастроенной машине, чтобы проверить это сам
Мне интересно, нужна ли вам учетная запись GitHub для клонирования хранилища из GitHub на локальный компьютер.
No. You just use a different URL:
git clone git://github.com/SomeUser/SomeRepo.git However, the local repo will be "read-only" in the sense that you won't be able to push your changes back to the original repo. You will still able to modify files and commit changes locally, though.
In contrast,
git clone git@github.com:UserName/OtherRepo.git works only if you have properly set up your environment with the necessary SSH keys and whatnot, but in return you'll get a repository that permits you to commit/push the changes back to the remote repo.
(Sorry for the unintentional ad for GitHub, I just had it in mind.)
@JosephMainwaring Я рад, что помог. Пожалуйста, не забудьте принять мой ответ, когда вы сможете это сделать.
Для GitLab это git clone https: // gitlab.com / SomeUser / SomeRepo.git
I was following some documentation for a product which required cloning from github. I didn't want to bother setting up an account so I needed to do exactly what was asked here.
The command in the documentation was:
git clone git://github.com/fcrepo4/fcrepo-message-consumer.git but that just fails for me with.
Cloning into 'fcrepo-message-consumer'... ssh: Could not resolve hostname github.com: nodename nor servname provided, or not known fatal: Could not read from remote repository. I tried
git clone git://github.com/fcrepo4/fcrepo-message-consumer.git as suggested in one of the answers but that failed too with.
Cloning into 'fcrepo-message-consumer'... fatal: Unable to look up github.com (port 9418) (nodename nor servname provided, or not known) What finally worked was this:
git clone https://github.com/fcrepo4/fcrepo-message-consumer.git Или просто используйте префикс http, и суффикс .git тоже не обязателен:
Вы можете проверить с
git clone http://github.com/tizenteam/iotivity-example Информация по теме:
https://help.github.com/articles/why-is-git-always-asking-for-my-password/
Анонимная загрузка на самом деле не будет работать для меня, пока я не уберу суффикс .git.
Вы можете использовать Github Tokens https://github.com/settings/tokens и использовать это:
git config --global url."https://$:x-oauth-basic@github.com/".insteadOf "https://github.com/" (заменить $на текущий токен
Ctrl+K или / — быстрый поиск Начните вводить запрос для поиска по сайту
Круто, спасибо за разъяснения. Я знаю об ограничениях при подходе к клону таким образом, но это хорошо для контекста процесса, который я документирую.