Tarayıcımdan Github kullanıcı arayüzünü kullanarak özel repo exampleite / myprivaterepo oluşturdum.
Sonra (masaüstünde) go dizinime gittim ve klonladım:
$ cd $GOPATH
$ go get github.com/examplesite/myprivaterepo
Çok uzak çok iyi. Scheduler.go dosyasını oluşturdu, repo'ya eklendi ve itti.
$ vim scheduler.go
$ git add scheduler.go
$ git commit
$ git push
Everythng iyi. Ama temiz bir dizüstü bilgisayara gittiğimde ve repoyu klonlamaya çalıştığımda bir hata aldım:
# Now on laptop, which doesn't yet know about the repo
$ cd $GOPATH
$ go get github.com/examplesite/myprivaterepo
# At this point it should ask for my user ID and password ,right? But it doesn't.
# Instead, this error occurs:
cd .; git clone https://github.com/examplesite/myprivaterepo /Users/tom/go/src/github.com/examplesite/myprivaterepo
Cloning into '/Users/tom/go/src/github.com/examplesite/myprivaterepo'...
fatal: could not read Username for 'https://github.com': terminal prompts disabled
package github.com/examplesite/myprivaterepo: exit status 128
Dizüstü bilgisayarım neden kendi deposumdan nefret ediyor ve kaderini kabul etmesini nasıl sağlayabilirim? Teşekkürler.
https://github.com/
içe aktarma yolunun bulunup bulunmadığını soracaktır. Git işlemi kullanıcı adı / parola isteyebilmeli, bu yüzden dizüstü bilgisayar yapılandırmasında farklı bir şey olmalı - farklı kabuk, farklı .gitconfig, bir env değişkeni, vb.
go
hata değil ,git
"terminal komut istemleri devre dışı" döndürüyor.git clone https://github.com/examplesite/myprivaterepo
Dizüstü bilgisayarınızda koşabilir misiniz ?