参考:http://www.eoeandroid.com/thread-272837-1-1.html

http://blog.csdn.net/hcbbt/article/details/11651229

1.添加ssh-key 折腾很久就是没有用命令把内容复制好,按照官网教程还是靠谱呀 https://help.github.com/articles/generating-ssh-keys/

2.配置git中用户信息

git config --global user.name "your name"  
git config --global user.email "your_email@youremail.com" 

3.在github建库,然后git clone 库

4.提交、上传

git add README
git commit -m "first commit"
git push origin master  

  

相关文章:

  • 2022-12-23
  • 2021-11-23
  • 2022-01-17
  • 2021-11-23
  • 2021-05-30
  • 2021-11-06
  • 2021-06-13
猜你喜欢
  • 2022-12-23
  • 2022-01-08
  • 2021-07-10
  • 2021-09-10
  • 2022-02-03
  • 2022-01-01
  • 2021-08-20
相关资源
相似解决方案