Git newbie here - 我已经设置了一个git存储库,它正在运行并推送了一些提交。我现在改变了代码,并试图推动新的更新,但我一直在改进:
我做了一个:
git commit -m "message"
然后:
git push origin master
Everything up-to-date
不确定我哪里出错了。
git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# modified: Makefile
# modified: weather-station
# modified: weather-station.c
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# .gitignore
如果我看一下github上的代码,那么它的旧版本就没有同步了。
知道我哪里出错了或者我怎么解决这个问题?