当使用 git 出现提示 untracked files 时怎么办?
背景介绍:
在使用 git 工具时,遇到如下错误。
报错内容:
$ git status
On branch master
No commits yet
Untracked files:
(use "git add ..." 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