Skip to content

Instantly share code, notes, and snippets.

View yusuketomoto's full-sized avatar

Yusuke Tomoto yusuketomoto

  • San Francisco, CA.
View GitHub Profile
AccessModifierOffset: -4
AlignEscapedNewlinesLeft: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortFunctionsOnASingleLine: false
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: false
BreakBeforeBinaryOperators: true
@yusuketomoto
yusuketomoto / clone_from_list.sh
Last active March 7, 2016 12:02
clone from remote repo list
#!/bin/sh
filename=$1
while read line ; do
git clone ${line}
done < ${filename}