Search code examples
gitios7xcode5settings

Change the user picture for Git in Xcode


Is there any way to change the Git user picture for Xcode5?

I can change the username and email with command like this:
xcrun git config --global user.name 'new_user_name'
xcrun git config --global user.email '[email protected]'

But what about the user picture?


Solution

  • The user pictures in Xcode are linked to your Mac Contacts. If the contact has a picture and you associate that contact with a Git committer then Xcode will show it in History. Here's how it works in Xcode 6, try it in Xcode 5:

    • in Source Control - History, hover over the name of the committer
    • click on that super teeny tiny disclosure triangle
    • from the drop down menu, select Add to Contacts
    • you can now create a new contact, including a picture, or "Choose existing" and pick a contact
    • confirm your choice and the icon shows up in your project

    Xcode isn't clever enough to apply the same committer contact to all your projects so you need to repeat this process for each project.

    enter image description here