当前位置:网站首页>简易的命令行入门教程
简易的命令行入门教程
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
边栏推荐
- 23. Please talk about the difference between IO synchronization, asynchronous, blocking and non-blocking
- The way of life, share with you!
- 真正懂经营管理的CIO具备哪些特质
- 【SOC FPGA】Peripheral KEY LED
- What does a good resume look like in the eyes of a big factory interviewer?
- PHP留言反馈管理系统源码
- 华为云数据治理生产线DataArts,让“数据‘慧’说话”
- DTSE Tech Talk丨Phase 2: 1 hour in-depth interpretation of SaaS application system design
- [MRCTF2020]Ezaudit
- Is it reliable to work full-time in self-media?
猜你喜欢

Goland opens file saving and automatically formats

Leetcode 119. Yang Hui's Triangle II

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

3D激光SLAM:LeGO-LOAM论文解读---特征提取部分

leetcode:1488. 避免洪水泛滥【二分 + 贪心】

你是这样的volatile,出乎意料

浅谈在线编辑器中增量编译技术的应用

归一化与标准化

Moonbeam创始人解读多链新概念Connected Contract

Summary of String Copy, Concatenation, Comparison and Split Functions (1)
随机推荐
Oracle动态监听与静态监听详解
新零售saas小程序如何探索数字化门店的破局之路?
PyQt5快速开发与实战 9.2 数据库处理
Summary of String Copy, Concatenation, Comparison and Split Functions (1)
Lotus explodes the block failed
【SOC】Classic output hello world
The first time I used debug query and found that this was empty, does it mean that the database has not been obtained yet?please help.
Chapter 5 Advanced SQL Processing
归一化与标准化
数据的存储
从零开始的Multi-armed Bandit
理解实现搜索二叉树
说几个大厂分库分表的那点破事。
华为云数据治理生产线DataArts,让“数据‘慧’说话”
Redis缓存穿透-热点缓存并发重建-缓存与数据库双写不一致-缓存雪崩
镜像站收集
mysql进制安装与mysql密码破解
华为云数据治理生产线DataArts,让“数据‘慧’说话”
PHP message feedback management system source code
初识二叉搜索树