随笔分类 -  Git

本分类用来添加一些自己在学习git或者github的一些知识
摘要:1 安装和初始化 配置全局用户名和电子邮件地址prompt> git config --global user.name "Your name"prompt> git config --global user.email "you@example.com" 为特定版本库配置用户名和电子邮件地址prompt> cd /path/to/repoprompt> git config user.name "Your name"prompt> git config user.email "you@exam 阅读全文
posted @ 2012-04-19 09:44 ziyoudefeng 阅读(327) 评论(0) 推荐(0)