Reputation: 1022
I created a project in Xcode (8.3.3) and put it on my Github account. But every commit I made using Xcode source control they never are show up on my contribution graph after I push my work. Does anyone have passed for this issue?
Ps. The commits are record normally.
Upvotes: 2
Views: 358
Reputation: 77
Xcode > Preferences > Source Control > Git
There you add your github email address and you all set!
Upvotes: 1
Reputation: 1323773
First, double-check your local config:
git config user.name
git config user.email
For your GitHub contribution to reflect your GitHub account, the user.name and user.email should be exactly the GitHub user name/email.
Then wait a bit: the contribution might not be updated right away.
Upvotes: 1