Ok, I'm starting to get the hang of things.
When previewing changes to a repo prior to pulling from it, why doesn't it show the changes I've made in my clone repo if I do the following?
git fetch
git log HEAD..origin
Please see this thread on how my workflow is setup. http://stackoverflow.com/questions/1613812/git-difference-between-tracking-a-branch-versus-cloning
If I run the commands above in a cloned repo it works fine. I can see the changes I made in the "log" file. If I run it on my laptop (the original place where initialize git from), I don't get an update when running the git log command. I can run git pull and it pulls the new changes over just fine.
Is it because I'm not "tracking" the repo?