GitHub에서 Git 저장소를 업데이트하려고합니다. 나는 많은 변경을 가하고 추가하고 커밋 한 다음 git push
. 응답은 모든 것이 최신이라고 말하지만 분명히 그렇지 않습니다.
git remote show origin
내가 예상했던 저장소로 응답합니다.
저장소에 표시되지 않는 로컬 커밋이있을 때 Git에서 저장소가 최신 상태라고 말하는 이유는 무엇입니까?
[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)