Git笔记--Ubuntu上传本地项目到github

目录

1--基本配置

2--本地上传


1--基本配置

① 创建ssh-key

bash 复制代码
cd ~/.ssh

ssh-keygen -t rsa -C "邮箱地址"

② 查看并关联ssh-key

bash 复制代码
gedit id_rsa.pub

复制内容,在 GitHub 中依次点击 Settings -> SSH and GPG keys -> New SSH key,将 id_rsa.pub 文件中的字符串复制进去;

③ 检查关联情况

bash 复制代码
ssh -T git@github.com

输出欢迎信息即关联认证成功!

2--本地上传

bash 复制代码
git init

git add .

git status

git commit -m  "first commit"

git remote add https://github.com/liujf69/TensorRT-Demo.git

# 用于设置令牌
# 格式: git remote set-url origin https://<令牌名称>@github.com/<用户名><仓库名>.git
git remote set-url origin  https://ubuntu20.04@github.com/liujf69/TensorRT-Demo.git

git push -u origin master

# 输入令牌对应的密码即可!
# 密码在生成令牌时自动生成!

​​​​设置令牌:

Settings -> Developer Settings -> Personal access tokens -> Tokens (classic) -> Generate new token;

默认勾选所有权限即可,同时设置令牌的有效时间;

生成的密码注意保存,其刷新即消失;

相关推荐
但老师5 小时前
Git遇到“fatal: bad object refs/heads/master - 副本”问题的解决办法
git
秃头女孩y5 小时前
git创建分支
git
不是笨小孩i5 小时前
开源AI图片处理工具HivisionIDPhotos安装与证件照制作指南
ubuntu
lihuhelihu6 小时前
第3章 CentOS系统管理
linux·运维·服务器·计算机网络·ubuntu·centos·云计算
零意@8 小时前
ubuntu切换不同版本的python
windows·python·ubuntu
研究是为了理解10 小时前
Git Bash 常用命令
git·elasticsearch·bash
DKPT10 小时前
Git 的基本概念和使用方式
git
饮啦冰美式11 小时前
22.04Ubuntu---ROS2使用rclcpp编写节点
linux·运维·ubuntu
wowocpp11 小时前
ubuntu 22.04 server 安装 和 初始化 LTS
linux·运维·ubuntu