#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
| .highlight { background-color: #ffffcc } | |
| .highlight .c { color: #586E75 } /* Comment */ | |
| .highlight .err { color: #93A1A1 } /* Error */ | |
| .highlight .g { color: #93A1A1 } /* Generic */ | |
| .highlight .k { color: #859900 } /* Keyword */ | |
| .highlight .l { color: #93A1A1 } /* Literal */ | |
| .highlight .n { color: #93A1A1 } /* Name */ | |
| .highlight .o { color: #859900 } /* Operator */ | |
| .highlight .x { color: #CB4B16 } /* Other */ | |
| .highlight .p { color: #93A1A1 } /* Punctuation */ |
#Create bitbucket branch
##Create local branch
$ git checkout -b sync
Switched to a new branch 'sync'
$ git branch
master
* sync
| javascript:(function(){var p=document.createElement("p");p.innerHTML="<strong>Loading…</strong>";p.id="loadingp";p.style.padding="20px";p.style.background="#fff";p.style.left="20px";p.style.top=0;p.style.position="fixed";p.style.zIndex="9999999";p.style.opacity=".85";document.body.appendChild(p);document.body.appendChild(document.createElement("script")).src="https://cdn.rawgit.com/ttscoff/6109434/raw/Bullseye.js?x="+(Math.random());})(); |
| #!/bin/bash | |
| # Katie Harron - @pibby | |
| # This bash script will setup a new Jekyll blog post in Markdown and open it for editing in Sublime Text 2 | |
| echo "Post Title: " | |
| read title | |
| echo "Post Description: " | |
| read desc | |
| echo "Post Tags: " | |
| read tags |
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
| function! ShowOnGithub() | |
| let u = system("echo ${${${$(git --git-dir=.git config --get remote.origin.url)#[email protected]:}%.git}#https://github.com/} | xargs echo -n") | |
| silent exec "!open "."https://github.com/".u."/blob/master/".@%.'\#L'.line(".") | |
| endfunction | |
| command! -nargs=0 ShowOnGithub call ShowOnGithub() | |
| nnoremap <Leader>gh :ShowOnGithub<CR> |
| license: gpl-3.0 |
| --- | |
| --- | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"> | |
| <channel> | |
| <title>{{ site.title }}</title> | |
| <description>{{ site.description }}</description> | |
| <link>{{ site.url }}</link> | |
| <language>en</language> | |
| <managingEditor>{{ site.managerName }} ({{ site.managerEmail }})</managingEditor> |
| --- | |
| --- | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | |
| <channel> | |
| <title>{{ site.title }}</title> | |
| <description>{{ site.description }}</description> | |
| <link>{{ site.url }}</link> | |
| <atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" /> | |
| {% for post in site.posts limit:10 %} |