看了好多帖子,终于在混乱中找到自己适合的方法。。。。。。
自我感觉这个比较简单。 先安装本地git,官方下载地址:http://git-scm.com/download/  根据你自己的系统 下载对应版本。 Administrator@USER-20170816VX MINGW64 /g/project/10guang (桌面要提交的文件,右键选择git bash here)
$ git clone https://github.com/gaobing1252/web-app.git (使用仓库地址生成 web-app 目录,这个目录是在提交文件的里面,然后把文件里面要上传的内容都拷贝到生成的web-app下)
Cloning into 'web-app'...
warning: You appear to have cloned an empty repository. Administrator@USER-20170816VX MINGW64 /g/project/10guang
$ cd web-app (继续命令到web-app,从此处开始) Administrator@USER-20170816VX MINGW64 /g/project/10guang/web-app (master)
$ git add . (注意这个 点 前面有空格的!)
warning: LF will be replaced by CRLF in home/home.html.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in js/jquery-1.6.2.min.js.
The file will have its original line endings in your working directory. Administrator@USER-20170816VX MINGW64 /g/project/10guang/web-app (master)
$ git commit -m "提交文件"
[master (root-commit) fb02d25] 提交文件
93 files changed, 11020 insertions(+)
create mode 100644 .project
create mode 100644 css/easyLife/easyLife.css
create mode 100644 video/video.html
create mode 100644 "\346\226\207\346\241\243.txt" Administrator@USER-20170816VX MINGW64 /g/project/10guang/web-app (master)
$ git remote add origin git@github.com:gaobing1252/web-app.git (origin 后面的地址是 ssh类型的,不是htttps!)
fatal: remote origin already exists. Administrator@USER-20170816VX MINGW64 /g/project/10guang/web-app (master)
$ git push -u origin master
Username for 'https://github.com': gaobing1252 (输入用户名,之后会弹出密码输入框;验证成功自动上传)
Enumerating objects: 108, done.
Counting objects: 100% (108/108), done.
Delta compression using up to 4 threads.
Compressing objects: 100% (102/102), done.
Writing objects: 100% (108/108), 1.40 MiB | 82.00 KiB/s, done.
Total 108 (delta 8), reused 0 (delta 0)
remote: Resolving deltas: 100% (8/8), done.
To https://github.com/gaobing1252/web-app.git
* [new branch] master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.(成功!)

这个每次上传都要输入账号密码,还有另一种绑定秘钥的。可我生成了几次也没成功。。。。
感觉输入账号密码也不麻烦。

  

第一次使用Git上传本地项目到github的更多相关文章

  1. 第一次使用Git上传本地项目到github上

    对于程序原来说都听说过GitHub,GitHub有许多开源的的项目和一些前沿的技术.因为自己在刚刚开始使用Git把自己写的一些小dome放到GitHub上遇到许多的坑,这么长时间过去了,想对第一次使用 ...

  2. 用git上传本地项目到github上

    首先确认自己已经安装了git,打开git bash,输入ssh-keygen -t rsa -C "自己的邮箱地址@XXX.com" ,生成自己的公钥与私钥   一路默认回车,会生 ...

  3. 第一次Git上传本地项目到github上 的命令

    1.下载Git软件:https://git-scm.com/downloads, 2.下载之后安装就很简单了, 3.邮箱注册 在git bash界面输入如下内容即可完成邮箱的注册: $ git con ...

  4. git上传本地项目到github

    git软件下载地址:https://git-scm.com/download/ 1. 在GitHub上建立项目登录GitHub后,你可以在右边靠中那里找到一个按钮“New Repository”,点击 ...

  5. 【转】如何使用Git上传本地项目到github?(mac版)

    原文链接:http://www.cnblogs.com/lijiayi/p/pushtogithub.html 在此假设你已经在 github 上创建好了一个项目,像这样: 并且你已经完成了自己的项目 ...

  6. 【 js 工具 】如何使用Git上传本地项目到github?(mac版)

    在此假设你已经在 github 上创建好了一个项目,像这样: 并且你已经完成了自己的项目代码, 同时你也已经安装了 git,然后 let's start. 首先,建一个文件夹比如文中演示的是 微信小程 ...

  7. Git 上传本地项目到Github

    前提: 安装Git 注册并拥有Github账号 目录: 初始化本地目录位Git仓库 Github上创建仓库 本地生成SSH key,并添加到Github上 本地项目管理Github上远程项目 详细步骤 ...

  8. 转:git上传本地项目到github

    转自:https://blog.csdn.net/Lucky_LXG/article/details/77849212 将本地项目上传到Github(两种简单.方便的方法) 一.第一种方法:首先你需要 ...

  9. git上传本地项目到github,方法2

    第一步:去github上创建自己的Repository,创建页面如下图所示: 填写相应信息后点击create即可 Repository name: 仓库名称 Description(可选): 仓库描述 ...

随机推荐

  1. 设备信息工具pv-jd快速上手

    pv-jd 这是一个判断设备信息的小工具,可以判断出移动端还是PC端,提供了多种API 快速开始 安装npm install pv-jd -S 示例 import {judgeDevice, judg ...

  2. SetupFactory7使用经验

    1.        exe默认产生快捷方式,可以点击去掉. 2.        默认英语,可与选汉语 3.        编码逻辑 安装程序复制完程序文件后,从编辑框中得到数据,并写ini文件 屏幕- ...

  3. 关于datagridview中checkbox列在选中行的情况下无法操作值

    这几天做项目的时候碰到了个小问题,在datagridview中实现对checkbox列的全选和反选功能.代码如下              //全选              if (dataGrid ...

  4. 使用notebook 笔记(1)

    1 去开启远程访问notebook 注意事项 安装好Ipython notebook 之后,  开启服务的方式如下: ipython notebook --profile=nbserver --ip= ...

  5. Shader之性能优化

    1.像素>>顶点数>>物体个数:shader中的计算应首先考虑放在script,其次vert,最后frag中 2.尽量用精度小的类型替换精度大的类型(特别是在frag中,要尽可 ...

  6. pdf2swf 转换时报错。This file is too complex to render- SWF only supports 65536 shapes at once

    在使用swftools转换pdf 到swf的时候报错,有如下说明:if the pdf contains too many images / shapes, pdf2swf will fail wit ...

  7. 安装PYTHON PIL包

    安装pillow而不是PIL pip install pillow 参考: https://github.com/python-pillow/Pillow

  8. ZT在谷歌上班感受如何?

    在谷歌上班感受如何? 2013-11-05 作者:腾讯科技 出处: 互联网 责编:zlu     在谷歌这家全球最大最有抱负的技术公司工作将是怎样的情景呢?是天堂般的享受,还是地狱般的折磨呢?下面看一 ...

  9. Linux python2.4升级到2.7

    yum install gcc-c++  gcc -y mkdir /usr/local/python2.7tar zxvf Python-2.7.11.tgzcd Python-2.7.11/./c ...

  10. (转)C++类库开发之导出类设计原则

    上一篇博客详细陈述了类库开发的各个知识点(http://blog.csdn.net/z702143700/article/details/45989993),本文将进一步陈述,对于类库开发过程中导出类 ...