9

Windows で実行している Git のバージョン (32 ビットまたは 64 ビット) を知りたいです。それを見つける方法はありますか?私が持っているあらゆる情報を貼り付けます。

$ git version

git バージョン 1.7.10.msysgit.1

vkaul@NBVK ~
$ git config -l

core.symlinks=false
core.autocrlf=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
pack.packsizelimit=2g
help.format=html
http.sslcainfo=/bin/curl-ca -bundle.crt
sendemail.smtpserver=/bin/msmtp.exe
diff.astextplain.textconv=astextplain
rebase.autosquash=true
gui.recentrepo=C:/OCRImages_GIT
user.email=vivek.kaul@jumio.com
user.name=Vivek Kaul
merge.tool=kdiff3
core.autocrlf=true
core.editor="C:/Program Files (x86)/GitExtensions/GitExtensions.exe" fileeditor
mergetool.kdiff3.path=C:/Program Files (x86)/KDiff3/kdiff3.exe
diff.guitool=kdiff3
difftool.kdiff3.path=C:/Program Files (x86)/KDiff3/kdiff3.exe
http.postbuffer=2000000000
push.default=一致
pack.windowmemory=512m
pack.packsizelimit=2g

4

6 に答える 6

7

これが古いことを感謝しますが、答えを見つけようとしてイライラし、自分で解決しました。デフォルトのインストール場所を使用すれば、非常に簡単です。

インストールが にある場合C:\Program Files\Git、それは 64 ビットです。入っていればC:\Program Files (x86)\Git32bitです。

于 2015-08-26T17:34:17.247 に答える
5

指示

file $( which git )

出力

/usr/bin/git: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=0x4faadbc9c19a44ab71d1714a4e3d69e177e42a76, stripped
于 2012-08-28T16:39:16.730 に答える
1

使用file、例えば

$ file `which git`
/usr/local/bin/git: Mach-O 64-bit executable x86_64
于 2012-08-28T16:39:18.117 に答える
0

Git Bash for Windows では、次のように入力できます。
where git

C:\Program Files\Git\mingw64\bin\git.exe
C:\Program Files\Git\cmd\git.exe

インストールされている場合Program Filesは、64 ビットを実行しています。
インストールされている場合Program Files (x86)は、32 ビットを実行しています。

于 2019-07-26T16:50:20.413 に答える