第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

無法使用 go-git 和訪問令牌運行 https git clone

無法使用 go-git 和訪問令牌運行 https git clone

Go
翻過高山走不出你 2022-10-17 16:47:07
使用go-git/v5并嘗試克隆https如下:    _, err := git.Clone(memory.NewStorage(), fs, &git.CloneOptions{        URL:           repo,        ReferenceName: plumbing.ReferenceName(branch),        Depth:         1,        SingleBranch:  true,        Auth:          &http.TokenAuth{Token: string(token)},    })token表單的字符串在哪里ghp_XXXXXXXXX(我的個人 GH 訪問令牌)repo等于我的私人回購https://github.com/pkaramol/arepo錯誤是"net/http: invalid header field value \"Bearer ghp_XXXXXXXXX`\\n\" for key Authorization"我還嘗試將基本身份驗證與我的用戶名和令牌作為密碼一起使用    _, err := git.Clone(memory.NewStorage(), fs, &git.CloneOptions{        URL:           repo,        ReferenceName: plumbing.ReferenceName(branch),        Depth:         1,        SingleBranch:  true,        Auth:          &http.BasicAuth{Username: "pkaramol", Password: token},    })現在錯誤變?yōu)椋篴uthentication required通過https克隆的正確方法是什么?該令牌具有repo范圍 fwiw編輯:實例化fs如下fs := memfs.New()使用的http包如下"github.com/go-git/go-git/v5/plumbing/transport/http"
查看完整描述

1 回答

?
互換的青春

TA貢獻1797條經驗 獲得超6個贊

這應該有效:


package main


import (

    "os"

    "fmt"


    "github.com/go-git/go-billy/v5/memfs"

    "github.com/go-git/go-git/v5/plumbing"

    "github.com/go-git/go-git/v5/plumbing/transport/http"

    "github.com/go-git/go-git/v5/storage/memory"


    git "github.com/go-git/go-git/v5"

)


func main() {

    token := "ghp_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"


    fs := memfs.New()


    _, err := git.Clone(memory.NewStorage(), fs, &git.CloneOptions{

        URL:           "https://github.com/username/reponame",

        ReferenceName: plumbing.ReferenceName("refs/heads/main"),

        Depth:         1,

        SingleBranch:  true,

        Auth:          &http.BasicAuth{Username: "username", Password: token},

        Progress:      os.Stdout,

    })


    if err != nil {

        fmt.Println(err)

    }


    fmt.Println("Done")

}


查看完整回答
反對 回復 2022-10-17
  • 1 回答
  • 0 關注
  • 138 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號