Cowboy: An Agile Programming Methodology for a Solo Programmer
February 6th, 2015
No comments
Categories: Uncategorized
Clone a “bare” Repository
This command is useful to setup an intermediate repository to develop against instead of developing directly against github:
git clone --bare [remote github repo] [local repo]
Push all your branches in the “bare” repo to the github remote
This will push all your branches to the remote, and set-upstream tracking correctly for you:
git push --all -u
The following steps will allow you to by-pass the shutdown menu when you press the “power” button on the remote control and allow the box go directly into suspend mode (M3) or shutdown (M1):
Note: If your device is an M1 model, simply change XBMC.Suspend() to be XBMC.Shutdown() instead.