first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>

View File

@@ -0,0 +1,22 @@
版本控制管理工具(团队项目开发使用的)
git
web端管理界面github.com
svn 老的工具(用的比较少)
git init: 在本地某个文件夹中创建仓库(本地仓库)
.git/
git add -A 将文件夹中所有文件添加到暂存区
git commit -m "备注"
git status
git pull 拉取远程仓库到本地
git push 推送本地代码到远程仓库