Tôi đang cố gắng cập nhật kho lưu trữ Git trên GitHub. Tôi đã thực hiện một loạt các thay đổi, thêm chúng, cam kết sau đó cố gắng thực hiện a git push
. Câu trả lời cho tôi biết rằng mọi thứ đều được cập nhật, nhưng rõ ràng là không.
git remote show origin
phản hồi với kho lưu trữ mà tôi mong đợi.
Tại sao Git cho tôi biết kho lưu trữ được cập nhật khi có các cam kết cục bộ không hiển thị trên kho lưu trữ?
[searchgraph] git status
# On branch develop
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# Capfile
# config/deploy.rb
nothing added to commit but untracked files present (use "git add" to track)
[searchgraph] git add .
[searchgraph] git status
# On branch develop
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# new file: Capfile
# new file: config/deploy.rb
#
[searchgraph] git commit -m "Added Capistrano deployment"
[develop 12e8af7] Added Capistrano deployment
2 files changed, 26 insertions(+), 0 deletions(-)
create mode 100644 Capfile
create mode 100644 config/deploy.rb
[searchgraph] git push
Everything up-to-date
[searchgraph] git status
# On branch develop
nothing to commit (working directory clean)