把代码提交到github

一、github新建仓库

  1. 点击New repository
  2. 添加信息
  3. 创建代码空间

二、上传代码

  1. 进入项目并清理所有 Git 历史(这一步会删除项目里所有隐藏的 .git 文件夹,把它们变成普通文件夹,解决上传为空的问题)

    bash 复制代码
    # 进入目录
    cd ~/scout_nav
    
    # 删除根目录下的 git 记录
    rm -rf .git
    
    # 【关键一步】删除所有子文件夹里的 git 记录 (解决无法 add 的问题)
    find . -name ".git" -type d -exec rm -rf {} +
  2. 初始化仓库并设置忽略名单

    bash 复制代码
    # 1. 确保在正确的目录
    cd ~/scout_nav
    
    # 2.初始化新仓库
    git init
    
    # 3. 创建 .gitignore 忽略垃圾文件
    echo "build/" > .gitignore
    echo "devel/" >> .gitignore
    echo "log/" >> .gitignore
    echo ".catkin_workspace" >> .gitignore
    echo ".vscode/" >> .gitignore
    echo "*.bag" >> .gitignore
  3. 提交代码

    bash 复制代码
    # 只添加 src 和配置文件
    git add src .gitignore
    
    # 提交
    git commit -m "Initial commit: scout_nav source code"
    
    # 重命名分支为 main
    git branch -M main
  4. 关联远程仓库并推送
    前面在github中新建了仓库,获取仓库的SSH地址

    bash 复制代码
     
    git remote set-url origin git@github.com:PengJiangP/仓库名
    
    # 推送
    git push -u origin main -f
相关推荐
happyCoder1 小时前
VS Code Git 神器:内置功能与GitLens插件使用技巧
git·github
lkbhua莱克瓦243 小时前
集合进阶8——Stream流
java·开发语言·笔记·github·stream流·学习方法·集合
MUTA️13 小时前
Git的使用(程序猿必会)
github
算家云20 小时前
基于GitHub Actions与算力平台API:构建端到端的模型自动训练与部署流水线
github·模型部署·算家云·租算力,到算家云·算力平台
无限进步_20 小时前
C语言动态内存的二维抽象:用malloc实现灵活的多维数组
c语言·开发语言·数据结构·git·算法·github·visual studio
NocoBase1 天前
8 个最佳 Google Sheets 替代方案(附成本与能力分析)
低代码·开源·github
逛逛GitHub1 天前
5 个很火火的个人 AI 知识库 GitHub 项目,收藏一波。
github
HelloGitHub1 天前
《HelloGitHub》第 116 期
开源·github
YongCheng_Liang1 天前
深度解析:GitHub API 爬虫工具 —— 自动化获取热门 / 推荐开源项目
爬虫·自动化·github