Code School Initializing Checking the Status Adding & Committing Adding Changes Checking for Changes Committing Adding All Changes Committing All Changes History Remote Repositories Pushing Remotely Pulling Remotely Differences Staged Differe... 続きを読む
Git っていうバージョン管理がありまして、 お仕事で使ってるのですが、 それの擬人化を描いてみたよ。 GitHub なイメージも付けてます。 続きを読む
Git Source Control Provider is a Visual Studio Plug-in that integrates Git with Visual Studio.VS 2010 users, it is recommanded to install Git Source Control Provider within Visual Studio by selecting Tools | Extension Manager. Run Visual Stud... 続きを読む
問題 git submodule で他のリポジトリ(以下「サブモジュール」)の内容を埋め込むことが簡単にできるのですが、 ごく稀に追加したサブモジュールを削除したくなる場合があります。 サブモジュールの追加や更新は git submodule add や git submodule update で簡... 続きを読む
git今,フォークしたリポジトリのリモートブランチだけがある. git remote origin 本家のリモートリポジトリの短縮名を登録する. git remote add github git://github.com/D-Programming-Language/dmd.git 本家の更新をローカルで反映させる. git pull --reb... 続きを読む
vimvimプラグインの管理を最近はやりのpathogen.vimを使う方法に変更しました。 今までは、vimanaを使ってみたりいろいろ試してはみたのですが、なかなかしっくり来る方法が見つからなかったのですが、pathogen.vimを使ってみたら、かなり使い心地が良かったた... 続きを読む
こんにちは、インフラやってる sotarok です。最近、社内でも「sotarok は そーたろっくと読む」という誤解が広がっていましたので改めて自己紹介しますと、sotarok と書いて「そーたろー」または「そーたろー・けー」と読みます。ロックしてないのでよろしくお... 続きを読む
2011-01-20 'git add -p' Hi, it is NISHIO Hirokazu. I just found "git add -p" is very nice. I show it. Here is a sample script. I'm going to add new function on it. def hallo(): print "hello!" When I added new function 'bye', I also found ther... 続きを読む
We are almost ready for take-off! Leave your e-mail address and you will be the first to know. Easy. Efficient. Powerful. Git has plenty of great features. Using all of them can be difficult if you only have your command line at hand. That's ... 続きを読む
This is an in-progress translation. To help translate the book, please fork the book at GitHub and push your contributions. 続きを読む
NbGit is a module for the NetBeans IDE that adds support for working with the Git version control system. It uses the JGit library created as part of EGit to interact with Git repositories. Because the module is Java code all the way, it shou... 続きを読む
Posted on Fri Oct 17 00:45:38 +0900 2008 by nabeken 注意 模索しながら書いているので、いろいろと最適なモデルを探っています。変更点は一番したのログを見てください。 使っていると、ラップトップ、デスクトップ、サーバでそれぞれテンプレートを1つ保持... 続きを読む
今回は、git で複数の人で開発するときをみてみます。 ただし、CVS のように複数の人が書き込める集中管理のレポジトリを置くのではなく、それぞれの人が自分のホーム以下のディレクトリで自分以外書き込めないような状態で進めてみることにします。 今回は、プ... 続きを読む
kunitさん主催による Git のメンテナ Junio さんの Git 講習会.プレゼン資料が USB メモリで廻ってくると言う,今までにないスタイル*1.最後のデモがかなり良かったです.Git のメンテナの Junio C Hamano さん Dell のノートに Ubuntu が入ってた.元々は Li... 続きを読む
能書き仕事で新人の時に使い方を(SolarisのCUIで)強制的にマスターさせられたCVS。今でも仕事でCVS使ったりするけど、それはきっと以下に示す理由が揃っているからだと思っていたり。一通りの機能が揃っていて(バージョン管理、tag、branch、コミットログ)枯れ... 続きを読む
(訳注:この資料は、http://www.kernel.org/pub/software/scm/git/docs/user-manual.html に掲載されている 内容を日本語訳したものです。 英語が得意でないので、誤訳があるかもしれません。 必要な場合は、原文を参照してください。)git は高速な分散リビジョ... 続きを読む
git rmは、Working Tree (作業コピー)と index からファイルを削除するコマンドですが、 --cachedを指定する事で、 indexからのみファイルを削除する事ができます。 git addはWorking Treeからindexにファイルを追加するコマンドなので、 git rm --cachedは、gi... 続きを読む
このチュートリアルでは git に新しいプロジェクトソースをインポートする方法と、 そこに変更を加える方法、そして他の開発者と変更を共有する方法を説明します。 もしあなたの主な目的がプロジェクトの変更を取得することであるなら (例えば最新バージョンの... 続きを読む