1

嗨,我刚刚开始了我的 git repo,这是我第一次在 windows 中使用 git

无论如何,我已经添加了我的项目并提交了它,但是,每当我修改一个文件时,它认为我需要重新添加,即使我已经这样做了。

$ git status
# On branch master
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   bonfire/content.php
#       modified:   bonfire/style_1.css
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#       .htaccess
#       .htaccess_del
#       .smileys/
#       1.htaccess
#       docs/
#       nbproject/
no changes added to commit (use "git add" and/or "git commit -a")


$ git add bonfire/content.php

$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#       modified:   bonfire/content.php
#
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   bonfire/style_1.css
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#       .htaccess
#       .htaccess_del
#       .smileys/
#       1.htaccess
#       docs/
#       nbproject/

我真的不想一直这样做。我相信我正确地添加了项目。完全不知道该怎么做

谢谢

4

1 回答 1

6

这就是 git 的工作方式,您的存储库已正确设置。您提交暂存区的内容,而不是您的工作树,因此您必须先将更改添加到暂存区。如果您只想提交一些更改,或者将更改拆分为多个提交,这将非常方便,因为您甚至可以将部分文件更改添加到暂存区域(使用git add -p)。

但是,如果您只想提交所有修改过的文件,有一个快捷方式:只需使用git commit -a. 这将直接提交工作树中所有修改和删除的文件。您仍然需要手动添加新创建的文件,但听起来这就是您所期望的。

于 2013-09-17T11:48:02.417 回答