code-8
code-8

Reputation: 58642

Configure HTTPS Cloned Project via GIT to pull without GIT Password

I cloned my project via https into my VM about 3 weeks ago.

The main goal is to avoid having to type the password every time, I need to pull. Now, I created an SSH key, copy my id_rda.pub and add that to my BitBucket Access Keys.

I pulled I kept getting prompted for GIT password.

How do I configure GIT so I don't have to reclone via SSH?

Upvotes: 0

Views: 27

Answers (1)

Jim Redmond
Jim Redmond

Reputation: 5640

If git remote -v still shows HTTPS URLs, then you'll need to update it:

git remote set-url origin [email protected]:owner/repo.git

Upvotes: 2

Related Questions