Git and Bitbucket without SSH

前端 未结 4 931
Happy的楠姐
Happy的楠姐 2021-02-02 09:13

I\'ve set up a local git repository on my computer, and I\'m trying to push that to a newly created Bitbucket account.

The problem is that Bitbucket gives me an s

4条回答
  •  死守一世寂寞
    2021-02-02 09:29

    You can connect to GitHub and Bitbucket repositories via HTTPS. Both will also let you push.

    These are the typical URLs for HTTPS access:

    https://username@bitbucket.org/username/repository.git
    https://github.com/username/repository.git
    

    Note that Git will prompt you for your password whenever you want to communicate with the remote.

提交回复
热议问题