如何上传tauri项目到csdn gitcode

如何上传tauri项目到csdn gitcode

首先保证项目目录有.gitignore,避免不必要的文件上传分享。

gitignore文件

bash 复制代码
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

上传到csdn gitcode

如下图分两步操作

网站端

首先在gitcode站点新建项目,如下图所示

创建完项目,会自动跳转到项目页面,点击切换SSH,本文采用SSH方式上传项目

SSH上传需要配置密钥,生成 SSH Key

本地端

你还可以按照以下说明从你的电脑中上传现有文件或项目。

bash 复制代码
cd tauri-app
git init

Git 项目设置

bash 复制代码
git config --local user.name " 用户名"
git config --local user.email " 用户名@noreply.gitcode.com"

创建一个新仓库

bash 复制代码
git clone git@gitcode.com: 用户名/tauri-app.git
cd tauri-app
echo "# tauri-app" >> README.md
git add README.md
git commit -m "add README"
git branch -m master
git push -u origin master

推送现有的文件

bash 复制代码
cd existing_folder
git init
git remote add origin git@gitcode.com: 用户名/tauri-app-001.git
git add .
git commit -m "Initial commit"
git branch -m master
git push -u origin master

推送现有的 Git 仓库

bash 复制代码
cd existing_repo
git remote rename origin old-origin
git remote add origin git@gitcode.com: 用户名/tauri-app.git
git push -u origin --all
git push -u origin --tags

gitcode发布

Git基础 - git tag 一文真正的搞懂git标签的使用

bash 复制代码
# 创建附注标签
git tag -a v0.0.1 -m "创建tauri V1 应用模板"
# 将指定的标签上传到远程仓库
git push origin v0.0.1
相关推荐
GitCode官方3 天前
DevUI 2024 年度运营报告:开源生态的成长足迹与未来蓝图
开源·开源项目·运营·gitcode·g-star
小Mie不吃饭6 天前
零基础构建最简单的 Tauri2.0 桌面项目 Star 88.4k!!!
c++·rust·node.js·tauri·桌面程序
GitCode官方12 天前
G-Star Landscape 2.0 重磅发布,助力开源生态再升级
开源·gitcode·g-star
GitCode官方14 天前
2025 GitCode 开发者冬日嘉年华:AI 与开源的深度交融之旅
人工智能·开源·gitcode
萧大侠jdeps1 个月前
Vue 3 与 Tauri 集成开发跨端APP
前端·javascript·vue.js·tauri
Domain-zhuo1 个月前
Git常用命令
前端·git·gitee·github·gitea·gitcode
GitCode官方1 个月前
GitCode 光引计划投稿 | GoIoT:开源分布式物联网开发平台
分布式·开源·gitcode
GitCode官方1 个月前
GitCode 光引计划投稿|智能制造一体化低代码平台 Skyeye云
低代码·制造·gitcode
GitCode官方1 个月前
GitCode 光引计划投稿|MilvusPlus:开启向量数据库新篇章
数据库·gitcode
GitCode官方1 个月前
GitCode 光引计划投稿|JavaVision:引领全能视觉智能识别新纪元
人工智能·ai·gitcode