github基本使用的命令

1) 配置 git

首先在本地创建 ssh key:

ssh-keygen -t rsa -C "[email protected]"
ssh -T [email protected]

git配置
git config --global user.name "your name"
git config --global user.email "[email protected]"


2)clone 从github拉文件到本地:
git clone [email protected]:zhuyujia/css.git
 

3)本地修改文件,提交,上传更新到github上
修改本地项目,add 修改的文件(. 表示全部),然后填写 commit,最后在 push 到 github。
git add .
git commit -m 'update'

git push



参考资料

http://www.cnblogs.com/yjzhu/archive/2014/07/21/3858188.html

你可能感兴趣的:(github)