git安装和项目上传到GitHub

重装系统后,Git安装也要来重来

下载

国内下载地址:https://npm.taobao.org/mirrors/git-for-windows

安装忽略

生成密钥

输入然后都是下一步,生成密钥,生成的在C:\Users\Admin\.ssh

ssh-keygen -t rsa -C "[email protected]"

进入C:\Users\Admin\.ssh 打开git 代理输入

ssh-agent bash

然后

ssh-add ~/.ssh/id_rsa

复制,粘贴到github账号ssh密钥里

clip < ~/.ssh/id_rsa.pub

检查连接

ssh -T [email protected]

成功连接如图

上传项目

cd方式进入目录

提交注释和配置用户

git commit -m "first commit"
  git config --global user.email "[email protected]"
  git config --global user.name "Your Name"

Config file location
    --global              use global config file
    --system              use system config file
    --local               use repository config file
    --worktree            use per-worktree config file
    -f, --file <file>     use given config file
    --blob <blob-id>      read config from given blob object

Action
    --get                 get value: name [value-regex]
    --get-all             get all values: key [value-regex]
    --get-regexp          get values for regexp: name-regex [value-regex]
    --get-urlmatch        get value specific for the URL: section[.var] URL
    --replace-all         replace all matching variables: name value [value_regex]
    --add                 add a new variable: name value
    --unset               remove a variable: name [value-regex]
    --unset-all           remove all matches: name [value-regex]
    --rename-section      rename section: old-name new-name
    --remove-section      remove a section: name
    -l, --list            list all
    -e, --edit            open an editor
    --get-color           find the color configured: slot [default]
    --get-colorbool       find the color setting: slot [stdout-is-tty]

Type
    -t, --type <>         value is given this type
    --bool                value is "true" or "false"
    --int                 value is decimal number
    --bool-or-int         value is --bool or --int
    --path                value is a path (file or directory name)
    --expiry-date         value is an expiry date

Other
    -z, --null            terminate values with NUL byte
    --name-only           show variable names only
    --includes            respect include directives on lookup
    --show-origin         show origin of config (file, standard input, blob, command line)
    --default <value>     with --get, use default value when missing entry

代码关联到github

git remote add origin [email protected]:sunday123/bootstrap01.git

如果出现

就删掉远程的

 git remote rm origin

提交

 git push -u origin master

可能报错

 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to ‘[email protected]:s....‘

用下面上传

git pull --rebase origin master

git push --set-upstream origin master

大功告成

原文地址:https://www.cnblogs.com/tk55/p/11795644.html

时间: 2024-10-10 06:43:14

git安装和项目上传到GitHub的相关文章

windows git把本地项目上传到github

http://www.git-scm.com/download/ git下载 生成sshkey ssh-keygen -t rsa -b 4096 -C "[email protected]" 添加到github中 官方帮助:https://help.github.com/articles/generating-ssh-keys/ 这里有个操作:http://www.tuicool.com/articles/j2iqaa windows   如出现 Permission denied

使用git将本地代码项目上传到github ..

本地环境: IntelliJ IDEA 2016.1.2 .git 客户端 .github帐号 ... Start building git project ... 1.登录到github.com后,点击选中如下图所示: 2.添加创建信息,分别如下: Repository name: 仓库名称 Description(可选): 仓库描述介绍 Public, Private : 仓库权限(公开共享,私有或指定合作者) Initialize this repository with a README

如何用命令将本地项目上传到github

一.Git终端软件安装 1.下载windows上git终端,类似shell工具,下载地址:http://msysgit.github.io/ 2.安装方法,打开文件,一路点击Next即可 3.安装完成,界面如下 二.配置 1.打开git bash,输入ssh-keygen -t rsa -C "自己的邮箱地址@XXX.com" ,生成自己的公钥与私钥 2.一路默认回车,会生成公钥.私钥到以下文件夹下id_rsa是私钥,id_rsa.pub是公钥,打开公钥等下要用到 3.浏览器进入自己的

使用git将项目上传到github上

如何将自己完整的项目上穿到github上呢? 就像爱一个人一样,其实很简单...... 首先第一步,在github上创建一个秘钥:  话说怎么创建呢?如下: 在github首页中右侧小图标处点击设置(Settings),进入设置页面之后点击:SSH and GPG keys会进入设置秘钥页面: 之后再点击New SSH key新建秘钥:Title值随便填,Key填的是你获取到的秘钥 第二步就是获取秘钥了:   获取秘钥前先安装下git:(可以官网下,当然你比较懒的话也可以从我百度云当中拿)  

Git的使用--如何将本地项目上传到Github

第一步:我们需要先创建一个本地的版本库(其实也就是一个文件夹). 你可以直接右击新建文件夹,也可以右击打开Git bash命令行窗口通过命令来创建. 现在我通过命令行在桌面新建一个TEST文件夹(你也可以在其他任何地方创建这个文件夹),并且进入这个文件夹 第二步:通过命令git init把这个文件夹变成Git可管理的仓库 这时你会发现TEST里面多了个.git文件夹,它是Git用来跟踪和管理版本库的.如果你看不到,是因为它默认是隐藏文件,那你就需要设置一下让隐藏文件可见. 第三步:这时候你就可以

Git的使用--将本地项目上传到Github

1.新建一个项目(文件夹),将要上传的项目放进去: test上传github是我新建的文件夹,es6-Setting-up-the-environment是我要上传的项目: 2.进入D:\test上传github,右键git bush here 3.输入git init 把这个文件夹变成Git可管理的仓库 此时会看到文件夹中多了一个.git文件夹,它是Git用来跟踪和管理版本库的.如果你看不到,是因为它默认是隐藏文件,那你就需要设置一下让隐藏文件可见.且变成了master分支(git bash最

详细教程:将本地项目上传到github

作为 一个工程师,将本地项目上传到github进行备份和分享是一个不错的技能,一来可以方便以后的工作,二来可以分享自己的成果.所以下面本人详细教大家如何将本地项目上传到github,十分简单,一学就会!!!! 首先先进入github.网址是:https://github.com/ 如果你还没有在github上注册过账号,那你先要注册一个账号,账号最好是用自己常用的邮箱,方便别人联系你,对你以后的工作极有帮助.下面是刚进入github的页面. 首次要先创建一个仓库,用来存储你的项目.步骤:先用鼠标

如何将你的Android项目上传到github

因为实习单位需要,最近研究了一下github的玩法,瞬间感觉自己以前用的svn弱爆了有没有! 因为自己也没有做很深的研究,这里就先分享一下将自己的项目上传到github上的步骤. 这里假设大家已经拥有了一个github账号(如果没有账号的,你还在等什么?), 而且电脑上已经安装了git(如果没有安装,可以下载安装一个GitHub for Windows,Linux用户以Ubuntu为例,直接在终端中输入命令"sudo apt-get install git-core"就可以了) 一.在

如何通过TortoiseGit(小乌龟)把本地项目上传到github上

1.第一步: 安装git for windows(链接:https://gitforwindows.org/)一路next就好了, 如果遇到什么问题可以参考我另外一篇文章~^ - ^ 2.第二步:安装小乌龟(我习惯把TortoiseGit叫成小乌龟,所以接下来所有的TortoiseGit我都代替为小乌龟啦) 小乌龟安装步骤(安装完小乌龟之后再安装语言包): 步骤我就不贴出来了,跟git一样一路next就OK了,我把安装需求的安装包贴在下面,可以参考一下~ 别忘记下载中文语言包(看到这里要注意呀