Issue
in colaboratory i can excecute bash command with "!" simbol like
bash
!git clone repository-name
for cloning github repository.
It's work perfectly when repository is public, but doesn't work when repository is private, because it request user name / password without a input. How could i solve this issue?
thank you a lot!
Solution
You can pass username and password from url itself:-
!git clone https://username:[email protected]/username/repository.git
Answered By - saurabheights
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.