Linux and linux
GitHub Contribution cannot display results
Address: http://blog.csdn.net/caroline_wendy
Modify GitHubAccount 1. open a commit, such as web site: https://github.com/SpikeKing/Test-Yamba/commit/b5baed812c719674c89bc375e2ad87603bd113c72. add at the end of the URL. patch, In the From find the sender mailbox: From: wangchenlong <wangchenlong@126.me> 3. add the email address to the GitHub account 4. you can see the GitHub Contribution.
Git's specific configuration GIT does not directly take charge of account management, but simply uses username and useremail to record Code Commit's Author information git config -- global user. name "fei" git config -- global user. email "fei@126.me" if it is inconvenient to set a global user. name and user. by email, you can set git config -- local user for a single project. name "fei" git config -- local user. e-mail "fei@126.me" to view the current configuration git config-l suggestion: internal company project use-global configuration, external company project use-local configuration; where: local configuration is saved in the project directory. in the git/config file