This list is deprecated. See Louisville.io instead.
- Meets every other Sunday @ 2pm
- Meetup: http://www.meetup.com/GameDevLou/
# This is a template .gitignore file for git-managed WordPress projects. | |
# | |
# Fact: you don't want WordPress core files, or your server-specific | |
# configuration files etc., in your project's repository. You just don't. | |
# | |
# Solution: stick this file up your repository root (which it assumes is | |
# also the WordPress root directory) and add exceptions for any plugins, | |
# themes, and other directories that should be under version control. | |
# | |
# See the comments below for more info on how to add exceptions for your |
/** | |
* When the client initializes this JS | |
* | |
* it gets the server time and sets a Session variable `serverTimeOffset` | |
* so the client always knows how far it's off from server time | |
* (and can be in sync) | |
* | |
*/ | |
// getServerMS() and calculate offset/diff, set into session var | |
Meteor.setServerTime = function() { |
If a project has to have multiple git repos (e.g. Bitbucket and Github) then it's better that they remain in sync.
Usually this would involve pushing each branch to each repo in turn, but actually Git allows pushing to multiple repos in one go.
If in doubt about what git is doing when you run these commands, just