Today we came into an issue when we added Aki into GitHub, and that was the realization that my code wasn't pushing to the right repo. Instead of our shared repo, it was pushing to a repo with the same name on my account, while Aki's was pushing straight to the shared repo. We fixed this on my machine with the following commands:
git remote add upstream "giturlhere"
git pull upstream master
git push upstream master
My code can now be pushed to the shared repo by the following:
git commit -a
git push upstream master
And if I want it only to go to my repo:
git commit -a
git push
Thursday we're going to setup Aki for this.
In other news, I also setup JQueryMobile. I haven't really used the library yet, however I plan to implement a settings menu using this, and possibly a store. It looks fairly simply to use!
We are very fortunate to have Sam as a resource in learning to use git properly. I'm looking forward to seeing how your experiments go with jQueryMobile. After you and Alex blaze the trail, I'll follow along behind you ;-)
ReplyDelete