git

简易的命令行入门教程:
Git 全局设置:

git config --global user.name "文采杰出"
git config --global user.email "568778282@qq.com"
创建 git 仓库:

mkdir yygh-parent
cd yygh-parent
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/outstanding-literary-talent/yygh-parent.git
git push -u origin "master"
已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/outstanding-literary-talent/yygh-parent.git
git add .
git commit -m "自定义注释内容"
git push -u origin "master"

posted @   文采杰出  阅读(14)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 【杭电多校比赛记录】2025“钉耙编程”中国大学生算法设计春季联赛(1)
点击右上角即可分享
微信分享提示