English 中文(简体)
Google Colab x Gitlab Repository cloning problem
原标题:

I am trying to clone my repository in Gitlab to Google Colab but kept receiving this below error. Google Colab has no issue with Github project cloning but Gitlab doesn t seem work.

Cloning into <project_name> ... remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for https://gitlab.com/<user_name>/<project_name>.git/

I have read all the related threads on Stackoverflow, trying both deploy_token and personal access token method but neither worked. Below is the line I use:

!git clone https://:@gitlab.com/<user_name>/<project_name>.git

问题回答

暂无回答




相关问题
JQuery Clone is cloning final row s data

I am running into a problem. I was using: $(this).parents("tr:first").remove(); to delete the row the user clicked on and then: var row = $( #picTableDisplay tbody>tr:last ).clone(true) ...

Why are Java enums not clonable?

It s too late to change the question, but more precise would have been to ask "Why does clone() not allow singletons?". A copy() method would be more convenient. Is there any reason why enums in Java ...

Deeply cloned Panel; controls don t redraw

I have problems with redrawing child controls of cloned panel. First, I m not using IClonable. I m using reflection. My code: public static Panel ClonePanel(Panel panel) { Panel newPanel = (...

jQuery Clone for showing single image

If we select multiple images, how can we show only single image when we are dragging? when I tried to drag, it was showing all the three selected images appended to it. As I m showing the total count ...

How to copy large set of data in SQLServer db

I have a requirement to take a "snapshot" of a current database and clone it into the same database, with new Primary Keys. The schema in question consists of about 10 tables, but a few of the tables ...

How can I operate on an DOM element cloned with jQuery?

I have a form that I m trying to duplicate using jQuery. I m using the clone() method, which returns the cloned object (DOM element). I need to then select elements of the cloned form and manipulate ...

Implementing the ICloneable Interface C# (Deep Cloning)

I was looking at code that implemented the ICloneable interface for one of the classes. The class was as follows: public class TempClass { String[] names; String[] values; } A partial class was ...

Making cloned repository in git the master

I have two git repositories: report.git (Master on remote location) cloned.git (Local) I lost report.git. I have the cloned.git. I want to clone other repositories from this cloned.git. This is ...

热门标签