Ho un'app per rails che richiede una gemma. Ospito questa gemma su bitbucket in un repository privato.repository privato bitbucket su heroku
Nel mio Gemfile ho aggiunto il gioiello come segue:
gem "my-gem", :git => "[email protected]:my-username/my-gem.git", :branch => 'master'
Voglio schierare la mia applicazione Rails su Heroku con
git push heroku master
Ora ottengo sempre seguente errore
Fetching [email protected]:my-username/my-git-repo.git
Host key verification failed.
fatal: The remote end hung up unexpectedly
Capisco l'errore, perché il repository è impostato su privato. Ma come posso risolvere questo problema?
ho già letto questa domanda: Deploying to Heroku using git on bitbucket, ma Io non realmente ottenere la risposta :) ..
provato che già, non funziona .. – Mattherick
ho appena provato. Ho creato un account bitbucket e un repository fittizio, ed è stato in grado di clonare usando 'git clone https: // nitzanshaked: [email protected]/nitzanshaked/test-repo.git'. Suppongo che se lo usi come URL per la tua gemma dovrebbe funzionare. Nota che ho usato "https: //", non "git + https: //". –
Ok, l'ho provato con "git" invece di "https". Grazie mille! Funziona perfettamente! Ma non mi piace inserire la password nel Gemfile, ma comunque, grazie per la tua risposta. – Mattherick