Skip to content

Instantly share code, notes, and snippets.

@tiijima
tiijima / memo.md
Created September 9, 2015 02:29
Gitブランチの名前の付け方

Gitブランチ名の命名規則

中央リポジトリ(例 github)

  • master 現在の製品バージョン。
  • develop 次回リリースの開発用。

開発者リポジトリ

@tiijima
tiijima / memo.md
Last active August 1, 2022 16:45
git/github git pullしたらエラーになった。 ssh: Could not resolve hostname github.com: Temporary failure in name resolution

git/github git pullしたらエラーになった。 ssh: Could not resolve hostname github.com: Temporary failure in name resolution

環境

  • virtualbox/vagrant/centos6.7

エラー内容

ssh: Could not resolve hostname github.com: Temporary failure in name resolution
fatal: The remote end hung up unexpectedly
@tiijima
tiijima / memo.md
Created June 7, 2017 03:08
SSL/TLS サイトの安全性についてのメモ
@tiijima
tiijima / memo.md
Created November 10, 2015 03:29
git clean 管理外ファイル・無視ファイル削除

git clean 管理外ファイル・無視ファイル削除

管理外ファイルを削除

# 管理外ファイルを確認
git clean -n
# 管理外ファイルを削除
git clean -f
@tiijima
tiijima / memo.md
Created December 20, 2015 03:54
bash zsh tmux.conf OS種別による分岐
@tiijima
tiijima / memo.md
Created September 21, 2015 03:55
eccube git管理時の.gitignoreファイルサンプル
@tiijima
tiijima / memo.md
Created December 1, 2015 02:46
mysql 起動時のエラー warning: World-writable config file /etc/my.cnf is ignored

mysql 起動時のエラー warning: World-writable config file /etc/my.cnf is ignored

起動時エラー

warning: World-writable config file /etc/my.cnf is ignored

対処方

my.cnfのアクセス権限が777などになっていると設定を読み込まないようになっている様なのでアクセス権限を適切に設定する。

@tiijima
tiijima / memo.md
Created November 10, 2015 15:12
git cherry-pick 別のブランチにコミットをコピーする