在私人Bitbucket 儲存庫中使用「go get」時,使用者可能會遇到「Forbidden 403”錯誤。這是因為「go get」內部依賴 git。將 git 配置為使用 SSH 進行克隆,可以避免此錯誤。
以下步驟將為 git 與 Bitbucket 建立 SSH 驗證:
# Generate an SSH key ssh-keygen -t rsa -b 4096 -C "your_email@example.com" # Add the SSH key to your Bitbucket account pbcopy < ~/.ssh/id_rsa.pub # On Bitbucket, go to your account settings -> SSH keys # Paste the SSH key you copied. # Set up your git config git config --global url."[email protected]:".insteadOf "https://bitbucket.org/" # Verify the SSH connection ssh -T git@[email protected]:bitbucket.org
建立 SSH 連接後,' go get' 將利用 SSH 克隆私有 Bitbucket 儲存庫。
以上是如何解決在私人 Bitbucket 儲存庫中使用 `go get` 時出現的「Forbidden 403」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!