日常更新一些笔记

This commit is contained in:
2026-06-22 22:11:42 +08:00
parent 69d4197074
commit df678ecd83
17 changed files with 1428 additions and 9 deletions
+15
View File
@@ -0,0 +1,15 @@
初始化:
- git init
添加远程仓库:
- git remote add origin 地址
把修改加入暂存区:
- git add .
提交修改
- git commit -m "备注信息"
推送到远程仓库
- git push
- git push -u origin 分支名