提交本地项目到GitHub

文章目录

  • [1 下载git](#1 下载git)

    • [1.1 通过homebrew安装Git](#1.1 通过homebrew安装Git)
    • [1.2 通过Xcode安装](#1.2 通过Xcode安装)
  • [2 创建ssh key、配置git](#2 创建ssh key、配置git)

  • [3 提交本地项目到GitHub](#3 提交本地项目到GitHub)

  • 说明:该博文参考这篇文章和这段视频

1 下载git

1.1 通过homebrew安装Git

  • 1、未安装homebrew,需安装homebrew
c 复制代码
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • 2、安装git
c 复制代码
 brew install git

1.2 通过Xcode安装

  • 直接从AppStore安装Xcode,Xcode集成了Git,不过默认没有安装,你需要运行Xcode,选择菜单"Xcode"->"Preferences",在弹出窗口中找到"Downloads",选择"Command Line Tools",点"Install"就可以完成安装了。

2 创建ssh key、配置git

  • 1、设置username和email(github每次commit都会记录他们)
c 复制代码
git config --global user.name "githubname"
git config --global user.email "email@youxiang.com"
  • 2、通过终端命令创建ssh key
c 复制代码
ssh-keygen -t rsa -C "email@youxiang.com"

没有创建过的,会要求确认路径和输入密码,这使用默认的一路回车就行。成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的key。

  • 3、用cat命令查看
c 复制代码
cat .ssh/id_rsa.pub
  • 4、登录GitHub(默认你已经注册了GitHub账号),点击Settings,点击New SSH key,添加ssh key

  • 5、链接验证
c 复制代码
ssh -T git@github.com 

终端输出的结果

c 复制代码
Last login: Sat Jan  6 14:42:55 on ttys000
WMBdeMacBook-Pro:~ WENBO$ ssh -T git@github.com 
Hi wenmobo! You've successfully authenticated, but GitHub does not provide shell access.
WMBdeMacBook-Pro:~ WENBO$ 

3 提交本地项目到GitHub

  • 1、在GitHub上新创建一个 repository或者Start a Project,如图:
  • 2、填写项目信息,如下图所示:

    点击Create repository,就创好一个工程了
  • 3、在终端输入cd 要上传的文件夹内,依次输入
c 复制代码
git init
git add .
git commit -m "First Commit"
  • 4、进入github中复制SSH地址
  • 5、上传到github
c 复制代码
git remote add origin 粘贴刚刚复制的SSH地址链接

或者使用

c 复制代码
git remote set-url origin 粘贴刚刚复制的SSH地址链接
  • 6、push到github
c 复制代码
git push -u origin master    
相关推荐
油泼辣子多加1 小时前
2024年11月15日Github流行趋势
github
小华同学ai1 小时前
WukongCRM:github高分开源项目,基于微服务架构 +vue ElementUI的前后端分离CRM系统
架构·开源·github
阑梦清川6 小时前
路漫漫其修远兮,吾将上下而求索---第一次使用github的过程记录和个人感受
github
鸡丝米线7 小时前
使用Git工具在GitHub的仓库中上传文件夹(超详细)
git·elasticsearch·github
代码猪猪傻瓜coding14 小时前
github 仓库初始化命令
github
岁月无声code16 小时前
Spring Boot 牛刀小试 org.springframework.boot:spring-boot-maven-plugin:找不到类错误
java·spring boot·github
油泼辣子多加17 小时前
2024年11月14日Github流行趋势
github
罗克米19 小时前
通过脚本,发起分支合并请求和打tag
github
喔喔咿哈哈20 小时前
【手撕 Spring】 -- Bean 的创建以及获取
java·后端·spring·面试·开源·github
zzxxlty21 小时前
MacOS 本地生成SSH key并关联Github
macos·ssh·github