标签:
1、安装git
sudo apt-get install git
2、创建github帐号
3、Linux创建SSH密钥:
ssh-keygen //一直默认
4、将公钥加入到Github账户信息Account Settings -> SSH Key
5、测试验证是否成功
ssh -T git@github.com
6、同步github到本地
git clone https://github.com/xxx/xxx.git
7、配置个人信息
git config --global user.name ‘xxx‘
git config --global user.email ‘xxx@xx‘
8、创建git仓库
git init
9、向github提交
git add *
git commit -m "xxxxxx"
git push origin master
标签:
原文地址:http://www.cnblogs.com/sywlneu/p/4333383.html