自分の作業ブランチを作成してからPull Request する間に同じファイルを別ブランチで編集されてしまったとか。
- master ブランチを最新版にする
$ ~ git:(master) git fetch origin
$ ~ git:(master) git pull origin master
- 自分の作業ブランチに戻る
$ ~ git:(master) git checkout -
- 作業ブランチにたいしてmasterブランチをrebaseする
#!/bin/sh | |
DBNAME="" #データベース名 | |
DBUSER="" #データベースユーザ名 | |
DBPASS="" #データベースパス | |
DBHOST="" #データベースホスト | |
DBPREFIX="" #テーブルのプレフィックス ex. wp_ | |
# ############ |
$ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715); | |
$ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1); | |
$ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95); | |
$ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53); | |
$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); | |
$ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955); | |
$ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19); | |
$ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1); | |
$ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1); | |
$ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22); |
// execute at node.js v.0.10.19 | |
/*---------------------------------------------------------------*/ | |
var toStrObj={}; | |
toStrObj.name = "shoota"; | |
toStrObj.age = 29; | |
toStrObj.body = {locale:'Japan',sex:'m',hasChildren:true}; | |
toStrObj.talk = function(){console.log('hello');}; | |
var toStr = JSON.stringify(toStrObj); |
# Description: | |
# Joke commands. | |
# | |
# Commands: | |
# ぬるぽ - You reply with, "ガッ" When you post a "ぬるぽ" word. | |
# | |
# Notes: | |
# ネタ/ジョーク系のbot全般 | |
module.exports = (robot) -> |