1 # Copyright (C) 2001, 2002 Earnie Boyd <earnie@users.sf.net>
2 # This file is part of the Minimal SYStem.
3 # http://www.mingw.org/msys.shtml
6 # Description: Shell environment initialization script
7 # Last Revised: 2002.05.04
9 if [ -z "$MSYSTEM" ]; then
13 # My decision to add a . to the PATH and as the first item in the path list
14 # is to mimick the Win32 method of finding executables.
16 # I filter the PATH value setting in order to get ready for self hosting the
17 # MSYS runtime and wanting different paths searched first for files.
18 if [ $MSYSTEM == MINGW32 ]; then
19 export PATH=".:/usr/local/bin:/mingw/bin:/bin:$PATH"
21 export PATH=".:/usr/local/bin:/bin:/mingw/bin:$PATH"
24 # strip out cygwin paths from PATH
27 PATH="$(awk -vRS=: -vORS=: '!/cygwin/' <<< "$PATH")"
28 # awk always adds a trailing separator
29 export PATH="${PATH%:}"
34 if test -f /etc/msys-1.0.dll.md5
36 # if check succeeds, let's avoid checking again
37 md5sum --status --check /etc/msys-1.0.dll.md5 &&
38 rm -f /etc/msys-1.0.dll.md5 ||
39 printf "\n\033[31mERROR: Your msys-1.0.dll is out-of-date!\033[m\n\n"
42 if [ -z "$USERNAME" ]; then
48 # Set up USER's home directory
49 if [ -z "$HOME" -o ! -d "$HOME" ]; then
50 HOME="$HOMEDRIVE$HOMEPATH"
51 if [ -z "$HOME" -o ! -d "$HOME" ]; then
56 if [ ! -d "$HOME" ]; then
57 printf "\n\033[31mERROR: HOME directory '$HOME' doesn't exist!\033[m\n\n"
58 echo "This is an error which might be related to msysGit issue 108."
59 echo "You might want to set the environment variable HOME explicitly."
60 printf "\nFalling back to \033[31m/ ($(cd / && pwd -W))\033[m.\n\n"
64 # normalize HOME to unix path
65 HOME="$(cd "$HOME" ; pwd)"
67 export PATH="$HOME/bin:$PATH"
69 export GNUPGHOME=~/.gnupg
71 if [ -z "$MAGIC" ]; then
72 magicfile=$(cd / && pwd -W)'/mingw/share/misc/magic'
73 test -f "$magicfile" && export MAGIC="$magicfile"
76 if [ "x$HISTFILE" == "x/.bash_history" ]; then
77 HISTFILE=$HOME/.bash_history
80 if [ -e ~/.inputrc ]; then
81 export INPUTRC=~/.inputrc
83 export INPUTRC=/etc/inputrc
88 # Our ls may ot handle LS_COLORS inherited in a Wine process
92 export HOME LOGNAME MSYSTEM HISTFILE
94 for i in /etc/profile.d/*.sh ; do
100 export MAKE_MODE=unix
103 test -e /bin/git.exe -o -e /git/git.exe || {
105 echo -------------------------------------------------------
106 echo "Building and Installing Git"
107 echo -------------------------------------------------------
114 MESSAGE="You are in the git working tree, and all is ready for you to hack."
117 MESSAGE="Your build failed... Please fix it, and give feedback on the Git list."
120 test -d /installer-tmp && rm -rf /installer-tmp
125 -------------------------
126 Hello, dear Git developer.
128 This is a minimal MSYS environment to work on Git.
135 # let's make sure that the post-checkout hook is installed
136 test -d /.git && test ! -x /.git/hooks/post-checkout &&
137 test -x /share/msysGit/post-checkout-hook &&
138 mkdir -p /.git/hooks &&
139 cp /share/msysGit/post-checkout-hook /.git/hooks/post-checkout
141 test -f /etc/motd && sed "s/\$MESSAGE/$MESSAGE/" < /etc/motd
142 test -x /share/msysGit/initialize.sh -a ! -d /.git &&
145 It appears that you installed msysGit using the full installer.
146 To set up the Git repositories, please run /share/msysGit/initialize.sh
150 *:/cmd:*|*:/bin:*) ;;
154 In order to use Git from cmd.exe:
155 1. Add c:\msysgit\cmd to cmd's PATH
156 2. DON'T add c:\msysgit\bin or c:\msysgit\mingw\bin to cmd's PATH
157 Commands like 'git add' will work from cmd.exe now.
158 Commands like 'git-add' will NOT work. Add more wrappers as appropriate.
163 . /git/contrib/completion/git-completion.bash
164 if test -z "$WINELOADERNOEXEC"
166 PS1='\[\033]0;$MSYSTEM:\w\007
167 \033[32m\]\u@\h \[\033[33m\w$(__git_ps1)\033[0m\]
170 PS1='\[\033]0;$MSYSTEM:\w\007
171 \033[32m\]\u@\h \[\033[33m\w\033[0m\]
175 # set default options for 'less'
177 # set default protocol for 'plink'
178 export PLINK_PROTOCOL=ssh
180 # read user-specific settings, possibly overriding anything above
181 if [ -e ~/.bashrc ]; then
183 elif [ -e ~/.bash_profile ]; then
185 elif [ -e /etc/bash_profile ]; then