当前位置:网站首页>简易的命令行入门教程
简易的命令行入门教程
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
边栏推荐
猜你喜欢

Public Key Retrieval is not allowed error solution

04、Activity的基本使用

论文阅读 (63):Get To The Point: Summarization with Pointer-Generator Networks

Win11如何把d盘空间分给c盘?Win11d盘分盘出来给c盘的方法

向量检索基础方法总结

torch.optim.Adam() 函数用法
![[HarekazeCTF2019]Avatar Uploader 1](/img/2c/6dde7b8d34ba0deb334b4283e1e30e.png)
[HarekazeCTF2019]Avatar Uploader 1

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

23. Please talk about the difference between IO synchronization, asynchronous, blocking and non-blocking

【SOC FPGA】Peripheral KEY LED
随机推荐
You are a first-class loser, you become a first-class winner
《痞子衡嵌入式半月刊》 第 59 期
微信小程序picker滚动选择器使用详解
Test Management and Specification
Tensorflow模型量化(Quantization)原理及其实现方法
打印1-100之间的奇数
[NCTF2019] Fake XML cookbook-1|XXE vulnerability|XXE information introduction
疫情之下的裁员浪潮,7点建议帮你斩获心仪offer
torch.optim.Adam() 函数用法
lotus 1.16.0 最小快照导出 导入
向量检索基础方法总结
每日练习------生成13位条形, Ean-13码规则:第十三位数字是前十二位数字经过计算得到的校验码。
SQLServer下载与安装
Minio 入门
字符串复制、拼接、比较以及分割函数总结(一)
理解实现搜索二叉树
数据的存储
The service already exists! Solution
镜像站收集
将 APACHE 日志解析到 SQL 数据库中