GIT操纵

简易的命令行入门教程:

Git 全局设置:

git config --global user.name "XXX"
git config --global user.email "XXX@XX.com"

创建 git 仓库:

mkdir flysnow_2ull
cd flysnow_2ull
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/weimaoer/flysnow_2ull.git
git push -u origin master

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/weimaoer/flysnow_2ull.git
git push -u origin master
posted @   飞雪飘鸿  阅读(116)  评论(0编辑  收藏  举报
编辑推荐:
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
阅读排行:
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· 深入理解Mybatis分库分表执行原理
· 使用 Dify + LLM 构建精确任务处理应用
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL
点击右上角即可分享
微信分享提示