当使用 git 出现提示 untracked files 时怎么办?

背景介绍

在使用 git 工具时,遇到如下错误。

报错内容

$ git status
On branch master

No commits yet

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

        docs/

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

报错原因:未进入到正确目录下,要进入到 untracked file 的文件夹下即可

解决办法

执行如下命令进入 docs 文件夹。

$ cd d:/opengauss/docs
$ git status
On branch z110
Your branch is up to date with 'upstream/master'.

nothing to commit, working tree clean
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐