タグ

2011年1月25日のブックマーク (5件)

  • .gitconfigに設定してるaliasなどのまとめ - ( ꒪⌓꒪) ゆるよろ日記

    22:56 @thinca さんからの指摘を追記 @yuroyoro あとお節介ですが、n個前とdiffなら HEAD^ より HEAD~ の方がいいと思いますよ。両者では若干意味が違います。~なら HEAD~3 と数字が書けるのも利点です。あと個人的にはwhatchangedよりlog --statの方が見やすくて好きです。 2010-10-08 22:30:52 via Tween to @yuroyoro @yuroyoro URL このgitconfigの記事に関して質問なのですが、core.excludesfile は $HOME で動きますか?以前試した時ダメで、~/ なら動いたのでこちらを使ってるんですが。 2010-10-08 22:20:49 via Tween to @yuroyoro 「そんな.gitconfigで大丈夫か?」 そんなわけで、仕事でもモリンモリンにgi

    ita-wasa
    ita-wasa 2011/01/25
    default = tracking # defaultのpush先はtrackingしているリポジトリ
  • git-remote(1)

    git remote [-v | --verbose] git remote add [-t <branch>] [-m <master>] [-f] [--[no-]tags] [--mirror=(fetch|push)] <name> <URL> git remote rename [--[no-]progress] <old> <new> git remote remove <name> git remote set-head <name> (-a | --auto | -d | --delete | <branch>) git remote set-branches [--add] <name> <branch>…​ git remote get-url [--push] [--all] <name> git remote set-url [--push] <name> <new

    ita-wasa
    ita-wasa 2011/01/25
    prune Deletes all stale remote-tracking branches under . These stale branches have already been removed from the remote repository referenced by , but are still locally available in "remotes/". With --dry-run option, report what branches will be pruned, but do not actually prune them.
  • What is Erlang written in?

    ita-wasa
    ita-wasa 2011/01/25
    Erlang itself is written in Erlang. Sounds it strange? Yes, because it is only partially true. OK look at it detailed: 1. Erlang preprocessor is written in Erlang. 2. Erlang parser is written in Erlang. 3. Erlang compiler to BEAM (byte-code VM) is written in Erlang. 4. Erlang compiler to
  • reStructuredText入門 — Sphinx v1.0 (hg) documentation

    reStructuredText入門¶ このセクションは、reStructuredText(reST)の考え方や文法についての短いイントロダクションです。Sphinxユーザがドキュメントを作成するために十分な情報を提供します。reSTはシンプルに設計された、控えめなマークアップ言語ですので、理解するのにそれほど時間はかからないでしょう。 段落(パラグラフ)¶ 段落はreSTドキュメントにおける、もっとも基的な要素です。段落は1行以上の空行で区切られた、シンプルなテキストの固まりです。 Pythonにおいてインデントが重要な意味を持つのと同様、reSTでもインデントは重要です。同じ段落のすべての行は、インデントを同じ高さにそろえて、左揃えにしなければなりません。 インラインマークアップ¶ 標準のreSTインラインマークアップは極めてシンプルです。 アスタリスク1つ: *テキスト* 強調(

    ita-wasa
    ita-wasa 2011/01/25
    いくつかの置換をすべてのドキュメントで使用したい場合には、置換の宣言を別のファイルに切り出して、その置換を行いたいすべてのドキュメントの冒頭で include ディレクティブを使用してインクルードする方法がありま
  • Minor tweak to make meck work with rebar/cover_enabled=true by jonmeredith · Pull Request #17 · eproxus/meck

    ita-wasa
    ita-wasa 2011/01/25
    Thanks a lot for the patch! Awesome work. The warnings you see are unfortunately hard coded in the cover application. :-( I myself have a patched version which suppresses all output from cover, this should probably go into OTP...