আমি আমার ব্রাউজার থেকে গিথুব ইউআই ব্যবহার করে ব্যক্তিগত রেপো উদাহরণসই / মাইপ্রাইভেটেরপো তৈরি করেছি।
তারপরে আমি আমার গো ডিরেক্টরিতে (ডেস্কটপে) গিয়ে ক্লোন করেছিলাম:
$ cd $GOPATH
$ go get github.com/examplesite/myprivaterepo
এ পর্যন্ত সব ঠিকই. ফাইল শিডিয়র.রেগো তৈরি করেছে, রেপোতে যুক্ত হয়েছে, এবং ঠেলাঠেলি করে।
$ vim scheduler.go
$ git add scheduler.go
$ git commit
$ git push
অলথ্যাঞ্জের ঠিক আছে। কিন্তু যখন আমি একটি পরিষ্কার ল্যাপটপে গিয়ে রেপো ক্লোন করার চেষ্টা করি, তখন আমি একটি ত্রুটি পেয়েছিলাম:
# 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
আমার ল্যাপটপটি কেন নিজের রেপোতে ঘৃণা করছে এবং আমি কীভাবে এটির ভাগ্য স্বীকার করতে পারি? ধন্যবাদ।
https://github.com/
আমদানির পথটি না থাকলে এটি অনুরোধ করবে । Git প্রক্রিয়া ব্যবহারকারীর নাম / পাসওয়ার্ড প্রম্পট করতে সক্ষম হওয়া উচিত, তাই ল্যাপটপ কনফিগারেশনে কিছু আলাদা হতে হবে - ইত্যাদি বিভিন্ন শেল, বিভিন্ন .gitconfig, একটি env পরিবর্তনশীল,
go
ত্রুটি নয়,git
প্রত্যাবর্তন করছে "টার্মিনাল প্রম্পটগুলি অক্ষম"। আপনি কিgit clone https://github.com/examplesite/myprivaterepo
আপনার ল্যাপটপে চালাতে পারবেন ?