私は非常に奇妙な状況にいます。変更をリモート git リポジトリに正常にプッシュできました。唯一の問題は、変更が正常にアップロードされたと表示されていても、変更が行われないことです。リモートリポジトリに移動して git status を実行する場合でも。変更したファイルが「コミットする準備ができているファイル」セクションに表示されます。git diff を実行しても何も起こりません。ファイルを確認しましたが、変更内容がありません
ローカル側
Anthonys-MacBook-Air:hrw2 numerical25$ git add app/controllers/users_controller.php
Anthonys-MacBook-Air:hrw2 numerical25$ git commit -m "new update, should work"
[wk1 888d2f8] new update, should work
1 file changed, 2060 insertions(+), 1997 deletions(-)
rewrite app/controllers/users_controller.php (97%)
Anthonys-MacBook-Air:hrw2 numerical25$ git push origin
root@superiorsoftllc.com's password:
stdin: is not a tty
Counting objects: 9, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 8.24 KiB, done.
Total 5 (delta 4), reused 0 (delta 0)
To root@superdupersoft.com:/home/super/public_html/staging/hrw2
92cb549..888d2f8 wk1 -> wk1
リモート側
# On branch wk1
# 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: app/controllers/users_controller.php
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# .htaccess.swp
# .idea/
no changes added to commit (use "git add" and/or "git commit -a")
したがって、問題は、すべてを正常に実行できるにもかかわらず、リモートで変更が行われないことです。十分に提供しなかった場合は、お知らせください。私は git はそれほど得意ではありませんが、git を使用する 2 つの仕事で働いていたので、git に関しては完全な馬鹿ではありません。
ありがとう