摘要: git config --global user.name "your_name" 让提交显示自己的名字git config --global user.email "your_name@xxx.com" 让提交显示自己的邮箱ssh-keygen -t rsa -C "your_name@xxx.com" 生成公钥私钥,将公钥给管理员,私钥自己保留。可以一路回车不要密码git clone git@IP:xxxx.git 从远程服务器上克隆一份代码git checkout branch_name 切换到某个分支git status 查看 阅读全文
posted @ 2013-06-19 10:24 水芊芊 阅读(250) 评论(0) 推荐(0) 编辑