hogashi.*

日記から何から

Git

Gitのサブコマンド眺めたりgit help help見たりした

git help help を初めて見た。 #102: Do Developers Really Know How to Use Git Commands? A Large-scale Study Using Stack Overflow – Misreading Chat で Git のサブコマンドの話をしていて、 140個ある!って言っててマジか、と思って git help --all …

git/gitのリポジトリにはハッシュがdeadbeefなコミットがある

github.com GitHub では https://github.com/git/git/commit/deadbeef みたいな URL でコミットの存在を確かめられるので、みなさんもお好きなリポジトリでぜひ。ちなみにこのコミットは This commit does not belong to any branch on this repository, and…

Gitのおすすめエイリアス5選

Git

motemen.hatenablog.com 色々設定してるけど普段使ってるの何かな〜と思って見ました。 $ history | perl -pe 's|^ *[^ ]+ +||' | grep -E '^git ' | awk '{print $1 " " $2}' | sort | uniq -c | sort -nr | head -5 470 git gr 352 git df 344 git sc 294 …

TortoiseGitでSSHサーバへリモート

Web開発を複数人でしたかったのでSSHサーバを立ててもらい、Gitを組むことにしました。 見事にハマりました。何故かエラーでサーバへのプッシュ/プルなどGit操作ができなかったのです。解決しましたが(後述)。 サーバはUbuntu12.04、OpenSSH-serverを使用。…