Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Git 新建文件


Git 添加新文件

您刚刚创建了第一个本地 Git 仓库。但它是空的。

所以让我们添加一些文件,或者使用您喜欢的文本编辑器创建一个新文件。然后将其保存或移动到您刚刚创建的文件夹中。

如果您想学习如何使用文本编辑器创建新文件,可以访问我们的 HTML 教程
HTML 编辑器

在本例中,我将使用一个简单的 HTML 文件,如下所示

示例

<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
</head>
<body>

<h1>Hello world!</h1>
<p>This is the first file in my new Git Repo.</p>

</body>
</html>

并将其保存到我们的新文件夹中,命名为 index.html

让我们回到终端并列出当前工作目录中的文件

示例

ls
index.html

ls列出目录中的文件。我们可以看到 index.html 在那里。

然后我们检查 Git status 并查看它是否是我们仓库的一部分

示例

git status
On branch master

No commits yet

Untracked files:
  (use "git add <file>..." to include in what will be committed)
    index.html

nothing added to commit but untracked files present (use "git add" to track)

现在 Git 知道该文件,但尚未将其添加到我们的仓库中!

Git 仓库文件夹中的文件可以处于以下两种状态之一

  • 已跟踪 - Git 了解并已添加到仓库的文件
  • 未跟踪 - 位于工作目录中但未添加到仓库的文件

 当您第一次将文件添加到空仓库时,它们都处于未跟踪状态。要让 Git 跟踪它们,您需要将它们暂存,或添加到暂存区。

我们将在下一章中介绍暂存区。


通过练习测试自己

练习

检查 Git 的状态

git 

开始练习


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.