Commit profile picture basic one bug

Hello,
I’ve recently gotten into a bit of a head scratch as whenever I commit and push something to my gitlab repo from my IDE, I just get the basic gitlab logo as the PFP (I’m using a personal access token), and when I push it from the gitlab editor, then the PFP is my actual one.
Anyone know how to fix this?
IDE commits;
image
Web commits/merge requests;
image

Hi there,

Does your local git config (e-mail and username) correspond to GitLab’s email and username?

1 Like

Local as in my IDE’s or VPS’?
How can I check?

Local as in where it does not work correctly - so locally on your computer where your IDE is installed.

You can open up terminal (CMD / Powershell / bash) and execute:

git config --list

and check user.name and user.email values. They should be the same as in your GitLab profile. If they are not, you can change them with

git config --global user.name "<your-name>"
git config --global user.email "<your-email>"
2 Likes