Changes between Version 56 and Version 57 of UsingGitWithWebKit


Ignore:
Timestamp:
Oct 27, 2010 1:58:06 PM (14 years ago)
Author:
Adam Roben
Comment:

Add instructions for installing and setting up msysgit

Legend:

Unmodified
Added
Removed
Modified
  • UsingGitWithWebKit

    v56 v57  
    77
    88== Install ==
    9 Mac users:
     9
     10You can download Git binaries directly from the [http://git-scm.com/download official site!] Or:
     11
     12=== Mac users ===
    1013 * Update your Git install: http://code.google.com/p/git-osx-installer/
    1114 * Update your SVN install (for `git-svn` bindings): http://www.open.collab.net/downloads/community/
    1215
    13 [http://www.debian.org Debian] users:
     16=== [http://www.debian.org Debian] users ===
    1417{{{
    1518   sudo apt-get install git-core
    1619}}}
    1720
    18 Windows users: http://code.google.com/p/msysgit/
    19 
    20 You can also download Git binaries directly from the [http://git-scm.com/download official site!]
     21=== Windows users ===
     22Install git for Cygwin using the Cygwin installer.
     23
     24Cygwin's git is functionally complete but has performance issues. For better performance, you can use [http://code.google.com/p/msysgit msysgit]:
     25
     26 * [http://code.google.com/p/msysgit/downloads/list Download the latest msysgit full installer]
     27 * When installing msysgit, tell the installer to:
     28   * Use Git Bash only
     29   * Checkout as-is, commit as-is
     30 * Choose ```Start > Programs > Git > Git Bash```
     31 * Create a file named .bashrc in your Git Bash home directory that contains the following:
     32{{{
     33cd /c/cygwin/home/<username>
     34export HOME=$(pwd)
     35}}}
     36 * Relaunch Git Bash. The shell should be using your Cygwin home directory as its home directory.
     37
     38Whenever you want to run a git command manually, use Git Bash. You can also run ```prepare-ChangeLog``` from Git Bash.
    2139
    2240== Checkout ==