当前位置:网站首页>简易的命令行入门教程
简易的命令行入门教程
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
边栏推荐
猜你喜欢
随机推荐
登录模块调试-软件调试入门
leetcode:1488. 避免洪水泛滥【二分 + 贪心】
win下搭建php环境的方法
Visual Studio编辑器 2019:scanf函数返回值被忽略(C4996)报错及解决办法
每日练习------生成13位条形, Ean-13码规则:第十三位数字是前十二位数字经过计算得到的校验码。
04、Activity的基本使用
What does a good resume look like in the eyes of a big factory interviewer?
PHP message feedback management system source code
数据预处理:离散特征编码方法
数组和指针(2)
归一化与标准化
DTSE Tech Talk丨第2期:1小时深度解读SaaS应用系统设计
Minio 入门
Gvim order record
DTSE Tech Talk丨第2期:1小时深度解读SaaS应用系统设计
云厂商做生态需要“真连接、真赋能”,用“技术+真金实银”发展伙伴
LeetCode318: Maximum product of word lengths
Moonbeam创始人解读多链新概念Connected Contract
[极客大挑战 2020]Roamphp1-Welcome
Go新项目-编译热加载使用和对比,让开发更自由(3)







![[极客大挑战 2020]Roamphp1-Welcome](/img/3b/2fa91f7478b8abf6efe0feafd24e58.png)

