当前位置:网站首页>简易的命令行入门教程
简易的命令行入门教程
2022-07-30 16:53:00 【fanlangke】
gitee
创建 git 仓库:
mkdir xx
cd xx
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/fanlangke/xx.git
git push -u origin "master"
已有仓库?
cd existing_git_repo
git remote add origin https://gitee.com/fanlangke/xx.git
git push -u origin "master"
github
…or create a new repository on the command line
echo "# xx" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/fanlangke/xx.git
git push -u origin main
…or push an existing repository from the command line
git remote add origin https://github.com/fanlangke/xx.git
git branch -M main
git push -u origin main
边栏推荐
- Express框架连接MySQL及ORM框架
- SLIM: Sparse Linear Methods (TopN推荐)
- LeetCode318:单词长度的最大乘积
- Gorilla Mux 和 GORM 的使用方法
- 获得抖音商品详情 API
- SQLServer下载与安装
- 3D激光SLAM:LeGO-LOAM论文解读---特征提取部分
- Explore CSAPP Experiment 2-bomb lab-Section 1
- Various meanings of SQL's PARTITION BY syntax (with examples)
- [NCTF2019] Fake XML cookbook-1|XXE vulnerability|XXE information introduction
猜你喜欢

MySQL 8.0.29 解压版安装教程(亲测有效)

torch.optim.Adam() 函数用法

MySQL超详细安装教程 手把手教你安装MySQL到使用MySQL 最简单的MySQL安装方式,这种方式装,卸载也简单

Discuz杂志/新闻报道模板(jeavi_line)UTF8-GBK模板

华为云数据治理生产线DataArts,让“数据'慧'说话”

DTSE Tech Talk丨第2期:1小时深度解读SaaS应用系统设计

大厂面试官眼中的好简历到底长啥样

实现web实时消息推送的7种方案

Is it reliable to work full-time in self-media?

SLIM: Sparse Linear Methods (TopN推荐)
随机推荐
Lotus 1.16.0 minimum snapshot export import
bert-base调试心得
Public Key Retrieval is not allowed error solution
【SOC】Classic output hello world
浅谈在线编辑器中增量编译技术的应用
How does the new retail saas applet explore the way to break the digital store?
SQLServer下载与安装
[NCTF2019] Fake XML cookbook-1|XXE vulnerability|XXE information introduction
You are a first-class loser, you become a first-class winner
Invalid or corrupt jarfile xxx.jar
《痞子衡嵌入式半月刊》 第 59 期
DTSE Tech Talk丨第2期:1小时深度解读SaaS应用系统设计
[TypeScript] Introduction, Development Environment Construction, Basic Types
MySQL 8.0.29 解压版安装教程(亲测有效)
微信小程序picker滚动选择器使用详解
Test Management and Specification
FP6606CMP5 CPC-16L USB类型-C和PD充电控制器 百盛电子代理商
LeetCode167:有序数组两数之和
arcpy tutorial
代码越写越乱?那是因为你没用责任链