在Github中创建项目并与本地关联

时间:2021-12-15 15:29:59

==创建项目和更新一,在github上认证SSH。和自己的mac绑定,以后可以直接在mac上更新github上的项目。github上会教你如何认证。二,在github上创建项目,可以初始化README.md文件和gitignore文件(Android)。一个项目会自动对对应一个仓库。三,对创建的项目在线做一些修改。如修改README.md和gitignore。Android的gitignore文件缺少”.idea/“,需要加上。四,clone项目到本地,添加代码,提交本地,推送到服务器。
  1. git clone git@github.com:mockito/mockito.git // 链接是一个项目例子
  2. cd mockito/ 
  3. git config user.name "xxxxxxx"
  4. git config user.email "xxxxxxx@xxx.com”  // 这两步是与远程绑定用户名和邮件 配置过一次以后就不用配置了
  5. git add .
  6. git status
  7. git commit -m "create project"
  8. git push origin master
 第四步中也可以不用clone到本地,而通过本地与远程关联,然后pull远程文件,添加本地,提交,推送到远程。
  1. git init   // 初始化本地
  2. git remote add origin git@github.com:mockito/mockito.git
  3. rm .gitignore
  4. git pull origin master // 从github到本地
  5. git add .
  6. git status
  7. git commit -m "first"
  8. git push origin master
 参考资料
  1. 教程 http://www.worldhello.net/gotgithub/03-project-hosting/010-new-project.html
  2. 绑定SSH Key http://www.cnblogs.com/fnng/archive/2011/08/25/2153807.html
  3. git 指南 http://www.bootcss.com/p/git-guide/