git和github在linux的基本使用

 
 
  1. git config --global user.name "woaigithub" 

  2. git config --global user.email "[email protected]

  3. //新建公钥和私钥 

  4. ssh-keygen -C "[email protected]" -t rsa 

  5. //显示公钥内容,拷贝到github的settings的public key中 

  6. cat /home/andy/.ssh/id_rsa.pub 

  7. //测试和github的联通性 

  8. ssh -v [email protected] 

  9. //在github新建repository,名称是rubyforum 

  10. //在本地执行 

  11. mkdir rubyforum 

  12. cd rubyforum 

  13. git init 

  14. touch readme 

  15. cat >> readme 

  16. ruby forum 

  17. //[ctrl+d]退出 

  18. git add readme 

  19. git commit -m "first commit" 

  20. git add remote origin https://github.com/woaigithub/rubyforum.git 

  21. git push origin master 

 

验证ssh

指定key文件

用于单机多ssh用户认证。

 
 
  1. ssh -v [email protected] -i /root/.ssh/id_rsa_gitcafe 

 

多个github帐号的SSH key切换

多个github帐号的SSH key切换

 

你可能感兴趣的:(github,git)