Window上传代码到github操作指导

操作环境

Windows7(32bit)

前提条件

1、完成msysgit工具安装。下载路径:官网或百度网盘路径Git-2.15.0-32-bit.exe。安装方法为默认选项执行。

2、已注册github账户。假设注册用户名为lion123,注册邮箱为[email protected]

3、本地已创建项目,路径:E:\SHELL。就是一个文件夹包含需要上传的文件。

操作步骤

1、选择"开始" -> "所有程序" -> Git -> Git Bash,进入命令行界面。

2、执行命令 ssh-keygen -t rsa -C "[email protected]" 生成SSH key,全部默认,直接回车。

[email protected]2052250 MINGW32 ~
$ ssh-keygen -t rsa -C "[email protected]"
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa):
Created directory ‘/c/Users/Administrator/.ssh‘.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa.
Your public key has been saved in /c/Users/Administrator/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:rNxdaz+MMY2R0zbwd8BwRzjRTj47BHhFbhTWBZGYWO4 [email protected]163.com
The key‘s randomart image is:
+---[RSA 2048]----+
|           o+=B#B|
|          .o++X.+|
|            o=.O |
|       .   .+ *o=|
|        S   E*.o+|
|     . o . .+..o |
|      o . . o=  .|
|           ...o  |
|              .. |
+----[SHA256]-----+

[email protected]-2052250 MINGW32 ~

查看./.ssh目录下的文件

[email protected]2052250 MINGW32 ~
$ cd .ssh

[email protected]-2052250 MINGW32 ~/.ssh
$ ls -al
total 25
drwxr-xr-x 1 Administrator 197121    0 十一 11 07:36 ./
drwxr-xr-x 1 Administrator 197121    0 十一 11 07:35 ../
-rw-r--r-- 1 Administrator 197121 1675 十一 11 07:36 id_rsa
-rw-r--r-- 1 Administrator 197121  405 十一 11 07:36 id_rsa.pub

[email protected]-2052250 MINGW32 ~/.ssh
$ cat id_rsa.pub
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDfC4E/GnLVKYKGq1Qp4Apz6n+Smpo9dE1ah50JPIT3C2YDXqOK+MI56kJbmBNyOb7+NTqZzpbvqlkEkKtvohIdN1XgB1u+qsVMtdYlQjTObi4ccHOig+omMgojDAUkoZ5nJz7Ervo0NABiw77AFXmny7UprFIPLZDmFdDeUgF5Vje0zlf9CjzWDk+oHhwuFCkG69gD17o0HgWLbV+EMx2sbHJNYD36cxSb [email protected]163.com

[email protected]-2052250 MINGW32 ~/.ssh

3、登录github账户,打开账户下的setting设置,将id_rsa.pub内容复制。

4、校验本地与GitHub间SSH信任关系

$ ssh -T [email protected]
The authenticity of host ‘github.com (192.30.255.112)‘ can‘t be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘github.com,192.30.255.112‘ (RSA) to the list of known hosts.
Hi lion123! You‘ve successfully authenticated, but GitHub does not provide shell access.

5、在Github里新建项目,项目名称与本地项目文件夹名称相同(E:\shell),名字为shell。github上创建方法如下

创建完成后可以通过如下方法获取SSH地址,下面需要用到。

6、在msysgit里进入本地项目的路径E:\shell并执行如下相关命令

[email protected]2052250 MINGW32 ~/.ssh
$ cd e:

[email protected]-2052250 MINGW32 /e
$ cd shell

[email protected]-2052250 MINGW32 /e/shell
$ git init
Initialized empty Git repository in E:/SHELL/.git/

[email protected]-2052250 MINGW32 /e/shell (master)
$ git add .

[email protected]-2052250 MINGW32 /e/shell (master)
$ git config --global user.email "[email protected]"

[email protected]-2052250 MINGW32 /e/shell (master)
$ git remote add orgin "[email protected]:lion123/Shell.git"

[email protected]-2052250 MINGW32 /e/shell (master)
$ git push -u orgin master
Counting objects: 3, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 2.52 KiB | 859.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To github.com:linyongfeng5555/Shell.git
 * [new branch]      master -> master
Branch ‘master‘ set up to track remote branch ‘master‘ from ‘orgin‘.

[email protected]-2052250 MINGW32 /e/shell (master)
$

7、查看github上shell项目是否有本地项目上传的文件。

8、查看到相关文件,操作完成。

时间: 2024-10-28 20:58:44

Window上传代码到github操作指导的相关文章

如何上传代码到github?

如何上传代码到github? 首先你需要一个github账号,所有还没有的话先去注册吧! https://github.com/ 我们使用git需要先安装git工具,这里给出下载地址,下载后一路直接安装即可: https://git-for-windows.github.io/ 1.进入Github首页,点击New repository新建一个项目  2.填写相应信息后点击create即可 Repository name: 仓库名称 Description(可选): 仓库描述介绍 Public,

使用Xcode上传代码至GitHub

几乎所有iOS程序员都上过GitHub寻找开源类库,的确,GitHub上有大量优秀的开源类库供大家学习.但是如何在Xcode中上传代码至GitHub呢? (开始之前先安装git,具体方法这里讲的很清楚:http://git.oschina.net/progit/1-起步.html) 开始 首先我们新建一个工程,记得要勾选Create git repository on: 这说明使用Source Control,会默认在工程中创建git repository.然后工程新建完成后,会在右侧边栏看到这

通过Webstorm上传代码到Github、更新代码后同步到github及克隆github代码到本地的方法

导读: Github做为IT爱好者分享代码的一个知名的平台,广受大家喜欢,那么我们平时该怎么将自己写的代码上传到github上面保存并且提供给其他人参考? 我想方法不外乎如下几个: 1.直接在github网页上面上传代码(没试过) : 2.利用git工具,下载git然后利用命令行工具上传代码,这种方式需要更多的命令行知识,对于不熟悉命令行工具的小伙伴来说是个很头疼的事: 3.利用开发工具Webstorm来进行类似图形化方式上传代码,这种方法简单容易,也是本文重点要讲述的! 问题1:那么如何利用W

使用webstorm上传代码到github

使用webstorm上传代码到github 字数681 阅读330 评论0 喜欢5 之前使用过webstorm上传代码到github,过了几个月竟然发现自己忘记了,好记性不如烂笔头啊,今天又重新用了一下,还是记一下的比较好. 用webstorm上传代码时,首先要先下载git,网址一搜就可以搜到,然后开始配置webstorm,打开webstorm,在file-settings中直接搜索github,然后输入自己github的账号密码, 点击test,之后就会出来了 connection succe

git上传代码到github

git上传代码带github [[email protected] ~]# git init [[email protected] ~]# git add zeppelin [[email protected] ~]# git commit -m "first commit" *** Please tell me who you are. Run git config --global user.email "[email protected]"  git conf

windows上传代码到github

上传代码到github上有很多种方法,在这里我介绍一种比较简单的一种.工具嘛,越简单越好用啊. 1.首先下载github在windows下的客户端 下载地址:https://desktop.github.com/ 这个客户端需要在线下载一些包.安装好了之后会出现下面这两个图标: 2.上传代码 一般情况需要将自己工程下的所有文件都上传上去,具体方式如下: (1)打开Git Shell (2)进入你的工程目录下 (3)执行如下命令即可上传: git init git add .        //注

GIT如何从本地上传代码到github

转载请标明出处: http://blog.csdn.net/hanhailong726188/article/details/46738929 本文出自:[海龙的博客] 开篇之前说下题外话,之前写过一篇博客,IOS-一步一步教你自定义评分星级条RatingBar,群里有人想要源码,我上传到github上了,有需要的可以去看一下,github地址自定义评分星级条 言归正传,最近有人在群里问怎么将新创建的本地代码上传到github上,这里简单的记录一下,我喜欢使用命令行,这里全用命令行来实现,不了解

通过命令行上传代码到GitHub

自工作以来,本人第一次使用GitHub.下面是将本地的项目上传到GitHub的过程.上传代码的前提是:1.已注册GitHub账号:2.本地已安装Git. 第一步:远程Git仓库 进入本地的项目的根目录下,执行Git命令 git init 第二步:将项目的所有文件添加到仓库中 git add . 如果想添加某个特定的文件,只需把.换成特定的文件名即可 第三步:将add的文件commit到仓库 git commit -m "注释语句" 第四步:在GitHub上创建自己的Repository

git基本操作及上传代码到gitHub

1.基本配置: 配置用户名:git config --global user.name" "; 配置邮箱:git config --global user.email " "; 查看配置:git config --list 2.基本操作: 创建仓库:进入一个目录下面执行 git init 使用当前面目录作为git仓库: git add filename 修改文件,添加一行" aaaa" git commit -m ''   //只是提交到暂存区,