将本地已有的项目添加到 GitHub

2017-08-08  本文已影响0人  Natus_Vincere
1.是否构建 本地 git
 - 打开终端 -> cd 到工程目录
 - git init  ( 初始化 git )
 - git add .   ( 添加所有文件到 git )
 - git commit -m "first commit"  ( 提交到本地仓库 )
 - git commit -m "last commit"  ( 提交到本地仓库 )
2. 在 GitHub 上新建一个空项目 , 不需要 添加ignore和readme文件
3. 复制在 GitHub 上创建好的项目地址 (https://github.com/(用户名)/(项目名).git)
4. 添加远程仓库
  - git remote add origin https://github.com/(用户名)/(项目名).git)
5.提交到远程仓库
 - git push -u origin master
上一篇下一篇

猜你喜欢

热点阅读