Windows から Git を使う方法

[参考記事] TortoiseGit
Gitをyumでインストールする方法

Windows から git を使う公式な方法は cygwin しかないみたいですが、非公式な方法として msysgit というアプリケーションを使う方法があります。

http://code.google.com/p/msysgit/ より

Git on Windows was only officially supported using Cygwin.

msysgit - Google Code

http://code.google.com/p/msysgit/

インストール







Adjusting your PATH environment
コマンドプロンプトから使用したいので、「Run Git from the Windows Command Prompt」を選択。


Choosing the SSH executable
使うとすれば putty を使うので「Use PLink」を選択。







インストール完了したら、コマンドプロンプトを立ち上げて、git がインストールされたことを確認します。

C:\>git
usage: git [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path] [-p|--paginat
e|--no-pager] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help]
COMMAND [ARGS]

The most commonly used git commands are:
   add        Add file contents to the index
   bisect     Find by binary search the change that introduced a bug
   branch     List, create, or delete branches
   checkout   Checkout a branch or paths to the working tree
   clone      Clone a repository into a new directory
   commit     Record changes to the repository
   diff       Show changes between commits, commit and working tree, etc
   fetch      Download objects and refs from another repository
   grep       Print lines matching a pattern
   init       Create an empty git repository or reinitialize an existing one
   log        Show commit logs
   merge      Join two or more development histories together
   mv         Move or rename a file, a directory, or a symlink
   pull       Fetch from and merge with another repository or a local branch
   push       Update remote refs along with associated objects
   rebase     Forward-port local commits to the updated upstream head
   reset      Reset current HEAD to the specified state
   rm         Remove files from the working tree and from the index
   show       Show various types of objects
   status     Show the working tree status
   tag        Create, list, delete or verify a tag object signed with GPG

See 'git help COMMAND' for more information on a specific command.

使い方

チェックアウト

git clone git://git.example.com/test.git

関連記事

スポンサーリンク

date 日付や時刻を表示,設定する

ホームページ製作・web系アプリ系の製作案件募集中です。

上に戻る