码迷,mamicode.com
首页 > Web开发 > 详细

GitHub把自己整个文件夹上传

时间:2018-03-14 14:52:24      阅读:370      评论:0      收藏:0      [点我收藏+]

标签:oba   src   ash   git bash   body   --   git init   使用   div   

我已经有了自己github,但是我怎么对我的项目进行上传呢,普通的上传只有上传单一的文件

这不我去下载了Git

然后开始使用Git Bash

Git要求每台电脑都要有自己的用户名(User Name)和邮箱(Email)

所以我就自己设置下

git config --global user.name "your name"
git config --global user.email "your email"

 建立和上传SSH Key

找到你这台电脑的管理员账户

文件夹下有这个

技术分享图片

用txt打开id_rsa.pub

然后到Github setting把这个填进去,Title随意

在自己电脑里找到自己所要上传的文件夹,右键Git Bash here

git init

其文件夹下会建立一个.git文件夹

git remote add origin git@github.com:你的账户/你的仓库名称.git

推荐先把两边同步下

git pull --rebase origin master
git pull origin master
git add .
git commit -m first_commit
git push origin master

 

GitHub把自己整个文件夹上传

标签:oba   src   ash   git bash   body   --   git init   使用   div   

原文地址:https://www.cnblogs.com/BobHuang/p/8566917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!