Ich habe versucht, ein Commit für GitHub durchzuführen, habe git hinzugefügt. Und mit dem Git-Status überprüft, aber es wurde nicht gut mit "Änderungen, die nicht für das Commit bereitgestellt wurden:" wiedergegeben.
python
$ git add .
$ git status
On branch login
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: app/controllers/users_controller.rb
modified: db/mysql/volumes/ib_logfile0
modified: db/mysql/volumes/ibdata1
modified: db/mysql/volumes/ibtmp1
modified: db/mysql/volumes/myapp_test/users.ibd
modified: db/mysql/volumes/mysql/innodb_index_stats.ibd
modified: db/mysql/volumes/mysql/innodb_table_stats.ibd
modified: spec/requests/users_signup_spec.rb
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: db/mysql/volumes/ibdata1
Im Falle dieses Fehlers wird gesagt, dass "db / mysql / volume / ibdata1" nicht gut inszeniert ist. Geben Sie daher den Dateinamen an und führen Sie den Befehl git add aus.
python
$ git add db/mysql/volumes/ibdata1
$ git status
On branch login
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: app/controllers/users_controller.rb
modified: db/mysql/volumes/ib_logfile0
modified: db/mysql/volumes/ibdata1
modified: db/mysql/volumes/ibtmp1
modified: db/mysql/volumes/myapp_test/users.ibd
modified: db/mysql/volumes/mysql/innodb_index_stats.ibd
modified: db/mysql/volumes/mysql/innodb_table_stats.ibd
modified: spec/requests/users_signup_spec.rb
Es wurde richtig reflektiert!
Ich begebe mich häufig. Wenn also ein Fehler auftritt, möchte ich ihn ohne Eile beheben.
Recommended Posts