#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
| /** | |
| * setup JQuery's AJAX methods to setup CSRF token in the request before sending it off. | |
| * http://stackoverflow.com/questions/5100539/django-csrf-check-failing-with-an-ajax-post-request | |
| */ | |
| function getCookie(name) | |
| { | |
| var cookieValue = null; | |
| if (document.cookie && document.cookie != '') { | |
| var cookies = document.cookie.split(';'); |
| #!/usr/bin/env ruby | |
| require 'open3' | |
| # Ruby doesn't realize how AFS works and is thus complaining about the | |
| # executable it's running being world writable. | |
| # It complains to stderr, so just suppress that. | |
| $stderr.reopen('/dev/null', 'w') | |
| def test(command) |