如何在windows下安装GIT

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在windows下安装GIT相关的知识,希望对你有一定的参考价值。

1下载:在官方网站下载最新版本。
2
安装:点击下一步,直到出现步骤三。
3
在Windows Explorer integration选项中将“Git Bash here”和“Git GUIhere”打对勾。
4
在“Adjusting your PATH environment”选项中,默认即可。
5
在“Configuring the line ending conversions”选项中,
第一个选项:如果是跨平台项目,在windows系统安装,选择;
第二个选项:如果是跨平台项目,在Unix系统安装,选择;
第三个选项:非跨平台项目,选择。
6
选择“Finish”,结束安装。
7
在桌面上,可以看到安装后的“Git Bash”选项,双击打开,可以进行操作了。
参考技术A Win7下安装配置Git
2.1 msysGit
2.1.1 下载
http://msysgit.github.io/
当前版本是Git-1.9.4-preview20140929
2.2.2 安装
1. 安装过程中,询问是否修改环境变量,选择“Use Git Bash Only”. 即只在msysGit提供的Shell
(NOTE: 这个步骤最好选择第二项“Use Git from the Windows Command Prompt”, 这样在Windows的命令行cmd中也可以运行git命令了。这样会对以后的一些操作带来方便,
比如Win7下安装配置gVim(http://www.cnblogs.com/zhcncn/p/4151701.html))
2. 配置行结束标记,保持默认“Checkout Windows-style, commit Unix-style line endings”.
2.2.3 中文乱码问题解决方法
1. ls 不能显示中文目录
解决办法:在git/git-completion.bash中增加一行【4】:
alias ls='ls --show-control-chars --color=auto'

另外,Git Shell 不支持 ls -l的缩写形式ll,也为其添加一个alias
alias ll='ls -l'

2.2.4 运行 Git 前的配置
1. 配置你个人的用户名称和电子邮件地址
$ git config --global user.name "xxx"
$ git config --global user.email xxx@example.com

2. 配置GitHub SSH
(1)首先使用 ssh-keygen 生成 SSH 密钥
$ ssh-keygen -t rsa -C "youremail@163.com"

(2)参考上面Cygwin下的配置方法,配置Github SSH。
2.2 TortoiseGit
2.1.1 下载
http://download.tortoisegit.org/tgit/
当前版本是TortoiseGit-1.8.11.0-64bit.
如需简体中文版,应同时下载 zh_CN 语言包:TortoiseGit-LanguagePack-1.8.11.0-64bit-zh_CN.msi.
注意,语言包也要相应的为64位的。
2.2.2 安装TortoiseGit
1. 在“Choose SSH Client”选择界面,保持默认选择“TortoiseGitPlink...”
2. 在“Custom Setup”界面,保持默认值,Location改为D盘
2.2.3 安装中文语言包
双击安装完成即可。
2.2.4 设置
在桌面空白处点击右键,右键菜单中可以看到已经加入了TortoiseGit快捷键
1. 选择“Settings”,进入“Settings-TortoiseGit”界面,选择“General”选项卡,设置本机器的 git 路径(一般会默认设置好的,比如我本地Git路径D:\Program Files (x86)\Git\bin就默认已经设置好了),并选择语言为 中文(简体);
2. 选择“Network”选项卡,查看SSH路径。SSH 默认已设置好了(D:\Program Files\TortoiseGit\bin\TortoiseGitPlink.exe )
3. 选择“Git”选项卡,查看用户名、邮箱,发现也已经被默认设置好了。
2.2.5 使用TortoiseGit下载代码
1. 在目标目录下点击右键,选择 “git 克隆”, 添加版本库地址 URL(比如https://github.com/zhchnchn/VimConfig.git)。
NOTE:必须是https类型的url。SSH类型的url会克隆失败。
2. 点击 ok 即可下载一份新版本库。
参考技术B “喊单”是一种外汇术语,也称之为“叫单”。就是公开讲自己的做单计划,让投资者或外汇爱好者根据喊单人所给的提示作为参考来做自己的真仓或模拟,喊单者会把自己开仓的价位,止损,止盈等信息传输给投资者,提供给投资者做为参考。

如何配置git for windows

下载:在官方网站下载最新版本。

安装:点击下一步,直到出现步骤三。

在Windows Explorer integration选项中将“Git Bash here”和“Git GUI here”打对勾。

在“Adjusting your PATH environment”选项中,默认即可。

在“Configuring the line ending conversions”选项中,
第一个选项:如果是跨平台项目,在windows系统安装,选择;
第二个选项:如果是跨平台项目,在Unix系统安装,选择;
第三个选项:非跨平台项目,选择。

选择“Finish”,结束安装。

步骤阅读
7
在桌面上,可以看到安装后的“Git Bash”选项,双击打开,可以进行操作了。
参考技术A 下载:在官方网站下载最新版本。

安装:点击下一步,直到出现步骤三。

在Windows Explorer integration选项中将“Git Bash here”和“Git GUI here”打对勾。

在“Adjusting your PATH environment”选项中,默认即可。

在“Configuring the line ending conversions”选项中,
第一个选项:如果是跨平台项目,在windows系统安装,选择;
第二个选项:如果是跨平台项目,在Unix系统安装,选择;
第三个选项:非跨平台项目,选择。

选择“Finish”,结束安装。

7
在桌面上,可以看到安装后的“Git Bash”选项,双击打开,可以进行操作了。

(望楼主采纳哦)
参考技术B 一、安装说明
1、Git在windows平台上安装说明。
Git 是 Linux Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件。目前Git已经可以在windows下使用,主要方法有二:msysgit和Cygwin。Cygwin和Linux使用方法类似,Windows版本的Git提供了友好的GUI(图形界面),安装后很快可以上手,此处我们主要讨论基于msysgit的Git安装和使用。
TortoiseGit是TortoiseSVN的Git版本,TortoiseGit用于迁移TortoiseSVN到TortoiseGit。一直以来Git在Windows平台没有好用GUI客户端,现在TortoiseGit的出现给Windows开发者带来福音。我们将在64位win7操作系统上安装Git,并使用GUI界面,则需同时安装msysGit和TortoiseGit。
2、阅读TortoiseGit官方安装说明:
http://code.google.com/p/tortoisegit/wiki/SetupHowTo
System prerequisites
For the latest version of TortoiseGit Windows XP SP3 or newer is required.
Admin privileges for the installation
msysGit is required by TortoiseGit
You do not need to download the whole msysGit development package, the "Full installer for official Git for Windows" download package is sufficient
msysGit 1.7.10+ is recommended for TortoiseGit 1.7.9+ (msysGit 1.7.10 adds utf-8 support and is compatible to *nix git)
minimum compatible version is 1.6.1 (for TortoiseGit < 1.7.9 you should use msysGit 1.7.6)
Installation
Just download the setup package for your system and install it. If you are running a 64 bit system, you do not need to download and install the 32 bit version: The 32 bit shell extension is included in the 64 bit installer since TortoiseGit 1.7.3.0.
Windows 2000
If you want to use TortoiseGit in a Win2K environment (only 1.6.5 and below support Win2K), please install GDI+ before you install TortoiseGit. However, running these old versions is not recommended (no utf-8 and separate-git-dir support).
Upgrade
Before upgrading you should read the ReleaseNotes.
Just download the setup package for your system and install it. The old version will be replaced automatically.
If you are upgrading from 1.7.3.0 or older and you have installed the 32-bit version on a 64-bit system you have to deinstall the 32-bit version first.
Common problems (installer aborts with an error message)
"This installation package is not supported by this processor type. Contact your product vendor."
This means you are trying to install the 64-bit version of TortoiseGit on a normal 32-bit operating system. You need to download and use the correct msi file for your OS. For normal 32-bit OS, make sure the msi filename does not have "64-bit" in it.
"Please wait while the installer finishes determining your disk space requirements."
Cleanup/empty the temp-directory (e.g. C:\Users\<your user>\AppData\Local\Temp, C:\User and Settings\<your user>\Local Settings\Temp, c:\Windows\Temp\).
由如上说明,我们寻找要下载的对应安装包,如下。

二、下载安装包
1、TortoiseGit下载地址:
http://code.google.com/p/tortoisegit/downloads/list
本次下载版本——TortoiseGit-1.7.12.0-64bit.msi
TortoiseGit 1.7.12.0 64bit
x64 Featured
2、msysgit下载地址:
http://code.google.com/p/msysgit/downloads/list
本次下载版本——Git-1.7.11-preview20120710.exe
Full installer for official Git for Windows 1.7.11
Featured Beta

三、安装过程
安装顺序:首先安装msysgit;然后安装TortoiseGit。
1、安装msysgit。
a、安装包下载完成后,双击进入安装界面,如下图:

b、两步next后选择安装目录,如下图:

c、next进入Git安装模块选择,默认,如下图:

d、next进入Git setup界面,“Select start menu folder”,默认,如下图:

e、next进入Git Setup界面,“Adjusting your PATH environment”,选择默认值“Use Git Bash only”,如下图所示:

f、next进入Git Setup界面,“Configuring the line ending conversions”,选择换行格式,选择“Checkout as-is, commit Unix-style line endings”,如下图所示:

g、next进入安装界面,完成安装,如下图所示:

这个时候已经可以使用git了, 打开Git Bash可以进入linux shell,可以使用git命令进行各种操作,由于大家都习惯使用图形界面的 TortoiseSVN,下面介绍使用 TortoiseSVN的类似软件 TortoiseGit,使用习惯相同,大家应该比较容易使用。
2、安装TortoiseGit。
a、双击安装程序,进入安装界面,

b、两步next进入“Choose SSH Client”选择界面,选择“OpenSSH,Git default SSH Client”,

c、next进入“Custom Setup”界面,选择默认值

d、next,进入“Ready to Install”界面,选择“Install”按钮开始安装过程,完成安装。

e、至此,TortoiseGit安装完成。在桌面空白处点击右键,右键菜单中会加入TortoiseGit快捷键

f、选择“Settings”,进入“Settings-TortoiseGit”界面,选择“General”选项卡,设置本机器的git路径

g、同时选择“Network”选项卡,设置SSH路径。SSH默认在安装Git时就安装了,在如下图所示的路径中。

h、选择“Git”选项卡,设置用户名、邮箱和key。

注:如果暂时在本地使用就只需将用户名和邮箱添加,而“Signing key”会自动生成。
至此,TortoiseGit设置完成。

3、下载代码。
a、桌面空白处右键,选择git clone添加版本库地址URL和本地文件夹。如下图所示:

点击ok即可下载一份新版本库。本回答被提问者和网友采纳

以上是关于如何在windows下安装GIT的主要内容,如果未能解决你的问题,请参考以下文章

如何在windows下安装GIT

如何在windows下安装GIT

如何在没有 Git Bash 或 GUI 的情况下在 Windows 10 上安装 git?

windows下怎么查看git安装路径

git windows下 pycharm + git ,在本地方便管理

git如何在windows上安装git