在Github中创建项目并与本地关联
==创建项目和更新
一,在github上认证SSH。和自己的mac绑定,以后可以直接在mac上更新github上的项目。github上会教你如何认证。
二,在github上创建项目,可以初始化README.md文件和gitignore文件(Android)。一个项目会自动对对应一个仓库。
三,对创建的项目在线做一些修改。如修改README.md和gitignore。Android的gitignore文件缺少”.idea/“,需要加上。
四,clone项目到本地,添加代码,提交本地,推送到服务器。
- git clone [email protected]:zl074081027/android-custom-chart.git // 链接是一个项目例子
- cd android-custom-chart/
- git config user.name "xxxxxxx"
- git config user.email "[email protected]” // 这两步是与远程绑定用户名和邮件 配置过一次以后就不用配置了
- git add .
- git status
- git commit -m "create project"
- git push origin master
- git init // 初始化本地
- git remote add origin [email protected]:zl074081027/android-custom-chart.git
- rm .gitignore
- git pull origin master // 从github到本地
- git add .
- git status
- git commit -m "first"
- git push origin master
- 教程 http://www.worldhello.net/gotgithub/03-project-hosting/010-new-project.html
- 绑定SSH Key http://www.cnblogs.com/fnng/archive/2011/08/25/2153807.html
- git 指南 http://www.bootcss.com/p/git-guide/
相关推荐
formula 2020-11-12
huhongfei 2020-11-05
乾坤一碼農 2020-10-27
liumengyanysu 2020-10-22
E哥的aws认证攻略 2020-10-15
guying 2020-10-05
好脑筋不如烂笔头 2020-09-17
baolen 2020-08-15
Equation 2020-08-09
Balmunc 2020-08-02
fenggou 2020-07-18
zhangxing 2020-07-05
loganwz 2020-07-05
tianyafengxin 2020-10-08
nebulali 2020-09-11