github的使用
Ubuntu 12.04 下 GitHub安装和使用快速入门
http://xie2010.blog.163.com/blog/static/21131736520140583731295/
git/github学习笔记
http://www.cnblogs.com/fnng/archive/2011/08/25/2153807.html
史上最全github使用方法:github入门到精通
http://www.360doc.com/content/13/1030/07/3300331_325214833.shtml
~/.gitconfig中的内容:
[user] email = yingc@nationalchip.com name = yingc [color] ui = auto [core] editor = vim [alias] co = checkout ci = commit st = status br = branch
touch README.md git init git add * git commit -m 'initial project version' git remote add origin git@github.com:username/project_name.git ## 即刚刚创建的仓库的地址 git push -u origin master ##推送代码到远程代码库
env GIT_SSL_NO_VERIFY=true git clone git@github.com:jingzhishen/StreamAnalysis.git
git pull
git ci -a -m "first commit"
git push -u origin master
GITHUB 提交错误 Error: Permission denied (publickey) 解决
http://www.cnblogs.com/amaoxiaozhu/p/3319233.html
http://blog.csdn.net/houyp520/article/details/9401745
yingc@yingc:~/.ssh$ xclip -sel clip < ~/.ssh/id_rsa.pub yingc@yingc:~/.ssh$ ssh -T git@github.com Warning: Permanently added the RSA host key for IP address '192.30.252.129' to the list of known hosts. Hi jingzhishen! You've successfully authenticated, but GitHub does not provide shell access. yingc@yingc:~/.ssh$
CSDN CODE平台,中国版Github简要使用说明!(多图慎入)
工作区和 staging 区
http://www.cnblogs.com/seven7seven/p/4123755.html
一个奔跑的程序员