Feeds:
文章
评论

Posts Tagged ‘git’

How to change git commit’s author and contact email?
不说不知道,方法很简单啊:
[~/path/to/repo]$ git config user.name “hugozhu”
[~/path/to/repo]$ git config user.email hugozhu@gmail.com
方法出处:http://github.com/guides/tell-git-your-user-name-and-email-address

Read Full Post »