Mike Hongshuai Luo

Let the learning begin

status-working

本项目用于创建GitHub的个人主页, 存放配置文件, 代码片段和其他可以公开的资料~

Web Tool

文件夹 & 文件名的命名规范

Git快速配置笔记

从远程clone到本地

cd path-to-parent_folder
git clone https://github.com/username/repo.git

把本地的项目链接到远程

echo "# repo-name" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:username/repo-name.git
git push -u origin main