start new:
tmux
start new with session name:
tmux new -s myname
| //Wrapper class to create extensible Titanium components | |
| function Component(/*Object*/ tiView) { | |
| var self = { | |
| __viewProxy:tiView | |
| }; | |
| //passthrough for add | |
| self.add = function(/*Object*/ tiChildView) { | |
| var v = tiChildView.__viewProxy||tiChildView; | |
| self.__viewProxy.add(v); |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: