GIT新手:如何检查我的情况发生了什么变化?

发布于 2024-12-10 07:12:58 字数 419 浏览 0 评论 0原文

我是 GIT 的新手。我正在 Ubuntu 机器上开发项目。

在我的项目根路径中,当输入 git status 时,我在终端窗口上得到以下输出:

# On branch develop
# Changed but not updated:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#   modified:   Rakefile
#   modified:   db/schema.rb

但是,我不知道这些文件已更改/修改了什么,如何检查更改是什么已经对这两个文件做了?

I am a newbie in GIT. I am developing project on a Ubuntu machine.

In my project root path, when type git status , I got the following output on terminal window:

# On branch develop
# Changed but not updated:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#   modified:   Rakefile
#   modified:   db/schema.rb

But, I do not know what has been changed/modified on those files, how to check what are the changes has been made on the two files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉城メ夜风 2024-12-17 07:12:58

只需运行:

 git diff

如果您想从此类命令中获得漂亮的彩色输出,则值得设置配置选项color.ui,如下所示:

git config --global color.ui auto

Just run:

 git diff

If you want nice coloured output from such commands, it's worth setting the config option color.ui, as in:

git config --global color.ui auto
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文