赞
踩
一 .GitHub服务器的使用
首先:先注册账号;打开GitHub官网https://github.com
Create an account
,创建账号成功后然后系统要求输入密码,直接按回车表示不设密码
重复密码时也是直接回车,之后提示你shh key已经生成成功。
f)我的电脑的地址是C:\Documents and Settings\Administrator\.ssh
j)回到github网站,进入Account Settings,左边选择SSH Keys,Add SSH Key
h) 本地仓库传到github上去,在此之前还需要设置username和email,因为github每次commit都会记录他们
$ git config --global user.name "your name"
$ git config --global user.email "your_email@youremail.com"
说明: a、设置用户名:git config -- global user.name '你再github上注册的用户名';
b、设置用户邮箱:git config -- global user.email '注册时候的邮箱';
注意:该配置会在github主页上显示谁提交了该文件
c、配置ok之后,我们用如下命令来看看是否配置成功
git config --list
i)进入要上传的仓库,右键git bash,添加远程地址
$ git remote add origin git@github.com:yourName/yourRepo.git
对应的GITHUB : yourName:yuanhangs yourRepo:myrepository
j)上传文件
1)在本地仓库里添加一些文件,比如db.sql
2)命令行输入:
注意:输入yes
显示效果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。