start new:
tmux
start new with session name:
tmux new -s myname
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:
| class DivideAndSlurm(object): | |
| """ | |
| DivideAndSlurm is a class to handle a map-reduce style submission of jobs to a Slurm cluster. | |
| Add a particula task to the object (though a specific function) and it will divide the input data | |
| into pools, which will be submitted (use the submit() function) in parallel to the cluster. | |
| Tasks can also further process its input in parallel, taking advantage of all processors. | |
| """ | |
| def __init__(self, tmpDir="/fhgfs/scratch/users/user/", logDir="/home/user/logs", queue="shortq", userMail=""): | |
| super(DivideAndSlurm, self).__init__() |