繁体   English   中英

在 Colab 中将文件推送到 Git 时出错:致命:无法读取“https://github.com”的用户名:没有这样的设备或地址

[英]error when pushing files to Git in Colab: fatal: could not read Username for 'https://github.com': No such device or address

我试图学习 github。

我在 github 上创建了一个私有存储库 Repo。

我在 Google Drive 中创建了一个文件夹,Folder,其中包含一些文件。

我在 Google Colab 上运行以下代码:

%cd /content/drive/My Drive/Folder
!git init
!git config --global user.email "JohnSmith@outlook.com"
!git config --global user.name "JohnSmith"
!git add -A 
!git commit -m "first commit"

然后我尝试了:

!git remote add origin https://<johnsmith>:<password>github@github.com/<johnsmith>/Repo.git

我从中得到:

/bin/bash: johnsmith: No such file or directory

然后我尝试了:

!git remote add origin https://github.com/johnsmith/Repo.git
!git push -u origin master

我从中得到:

fatal: could not read Username for 'https://github.com': No such device or address

请注意,出于隐私目的,我更改了 Repo 的名称和用户名。

所以我的目标是将文件夹放在 github 的 Google 驱动器上。 我该怎么做?

2020 | git v2.17.1

解决方案:

致命:无法读取“https://github.com”的用户名:没有这样的设备或地址

只需执行以下步骤

1.为github生成personal-access-TOKEN:from https://github.com/settings/tokens

  1. 如您所述,要推送更改直到提交,然后运行以下命令。

    git push https://<YOUR-PERSONAL-ACCESS-TOKEN>@github.com/<User-Name>/<Repo-Name>.git


例子

添加一些文件或进行一些更改

!git config --global user.email "JohnSmith@outlook.com"
!git config --global user.name "JohnSmith"
!git add . 
!git commit -m "first commit"
!git push https://123dpope888040e2s90136d8bxx99927@github.com/JohnSmith/hello.git

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM