当前位置:网站首页>简易的命令行入门教程
简易的命令行入门教程
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
边栏推荐
猜你喜欢
随机推荐
实现web实时消息推送的7种方案
理解实现搜索二叉树
全职做自媒体靠谱吗?
UI测试新方法:视觉感知测试详解
You are a first-class loser, you become a first-class winner
Is it reliable to work full-time in self-media?
【SOC】Classic output hello world
3D激光SLAM:LeGO-LOAM论文解读---系统概述部分
KDD 2020 | 深入浅出优势特征蒸馏在淘宝推荐中的应用
Nervegrowold d2l (7) kaggle housing forecast model, numerical stability and the initialization and activation function
数据的存储
Goland opens file saving and automatically formats
KDD‘21推荐系统离散特征表征无embedding table Learning to Embed Categorical Features without Embedding Tables for
MySQL索引常见面试题(2022版)
PyQt5快速开发与实战 9.2 数据库处理
Summary of String Copy, Concatenation, Comparison and Split Functions (1)
京东获取推荐商品列表 API
Wanhua chemical fine chemical industry innovation product assembly
论文阅读 (63):Get To The Point: Summarization with Pointer-Generator Networks
PHP留言反馈管理系统源码


![[Geek Challenge 2020] Roamphp1-Welcome](/img/3b/2fa91f7478b8abf6efe0feafd24e58.png)






