タグ

2013年7月9日のブックマーク (3件)

  • Git for Computer Scientists

    Abstract Quick introduction to git internals for people who are not scared by words like Directed Acyclic Graph . Storage In simplified form, git object storage is "just" a DAG of objects, with a handful of different types of objects. They are all stored compressed and identified by an SHA-1 hash (that, incidentally, isn't the SHA-1 of the contents of the file they represent, but of their represen

  • 【翻訳】Gitをボトムアップから理解する

    John Wiegleyさんの "Git from the bottom up" を翻訳しました。 元PDFはこちらからダウンロードできます: http://newartisans.com/2008/04/git-from-the-bottom-up/ 元記事のライセンスがクリエイティブコモンズのBY-SAであったため、この翻訳もBY-SAとなります。 ライセンスを守って自由にご利用ください。(詳しくは記事内の最初にも書いてあります) 翻訳ミスの指摘や改善の提案等があればブログコメントやTwitter(@oshow)などで遠慮なくどうぞ。 Git をボトムアップから理解する Wed, 2 Dec 2009 by John Wiegley 私が Git を理解しようと調査した時、高級なコマンドの視点から眺めるよりボトムアップ式に理解することが役立った。そしてボトムアップ視点で見る Git

    【翻訳】Gitをボトムアップから理解する
  • プログラミング/git-svn ヘルプの日本語訳

    的な使用例 † Subversion で管理されるプロジェクトの trunk に対して、 git を使って変更を追跡したり開発に貢献するには: # リポジトリを複製 (git clone と同様に) git svn clone http://svn.foo.org/project/trunk # 複製されたディレクトリに移動 cd trunk # master ブランチで作業している必要があるので git-branch で確認。 git branch # 何か作業を行った後、git のローカルリポジトリにコミット git commit ... # SVN に何かコミットされているかもしれないので、ローカルの変更点を # SVN の最新の更新に対するものとして rebase する git-svn rebase # 変更点を (先に git でローカルにコミットされたもの) SVN にコミ

    cknbstr
    cknbstr 2013/07/09
    簡単のため、そして、機能性に劣るシステム(SVN)と相互運用をするため、 git-svn を使う場合には clone, fetch, dcommit は必ず直接 SVN サーバーに 対して行い、git リポジトリやブランチの間で clone/pull/merge/push を するのを避けるべ