From when I started committing this morning, my master pointer has been advancing but my remote/origin/master pointer has not. However, when I use the command line to check where remote origin is (ls-remote origin
) as I've seen recommended on similar questions, The SHA1 returned is not the one of the commit that the remote/origin/master pointer indicates, but the one that master indicates. When I try git pull
, something else I saw recommended, I'm told that I'm already up to date.
Here is what gitk is currently showing (couldn't post an image)
- master
- remotes/origin/master
I am the only person working on this code and very new to git and to version control in general.
Update:
Other things I've tried:
Tried
git push
, which gives me the message that everything is up-to-dateTried
git fetch
, which does not change what I see in gitk (also triedgit fetch origin
)