1

I always push my commits as a account stsushi, but my commits always end up on github under another account. Anyone understand why?

BPS-1
  • 13
  • 3

1 Answers1

0

You have two accounts on GitHub

  1. Stsushi
  2. BPS-1

Right now git configured with email of BPS-1 in you system.

just configure your desire email
Like
git config --global user.email "email@example.com"

Hope it will help you. Happy Coding..!

Talha Rahman
  • 720
  • 4
  • 12
  • 27