Tortoisegit Installation and Configuration

Source: Internet
Author: User

tortoisegit abbreviation Tgit, Chinese turtle git. Turtle git only supports artifact Windows system, has a predecessor Turtle SVN, TortoiseSVN and tortoisegit are very good open source repository client. It is divided into 32-bit and 64-bit editions. and supports a variety of languages, including Simplified Chinese (Chinese, simplified; zh_cn).

Note: XP systems do not already support the latest installation packages, please use Win7 or later operating systems as much as possible.

The official note is: Users of Windows XP and Server 2003, please update TortoiseGitProc.exe after installing 1.8.12.0. That is, if you finish installing the 1.8.12.0 version of Tgit on XP or 2003, you will need to install this fix pack. (But I can't even put it in XP, let alone install it)

Download

0. TortoiseGit-1.8 Chinese version and git install package: http://download.csdn.net/download/renfufei/8204699

    1. Tortoisegit download page: http://download.tortoisegit.org/tgit/

2. After opening the download page, find the corresponding Latest stable release (the latest stable version) directory, such as the current version 1.8.12.0, click to enter the corresponding page.

Select a version

3. After entering the specific version page, select the appropriate program installation package and the Chinese language pack according to the Windows operating system version.

For example, 32-bit systems (with 32bit, or x86, i586, etc.).

    • 32-bit program installation package: Http://download.tortoisegit.org/tgit/1.8.12.0/TortoiseGit-1.8.12.0-32bit.msi
    • 32 Chinese Language Pack: Http://download.tortoisegit.org/tgit/1.8.12.0/TortoiseGit-LanguagePack-1.8.12.0-32bit-zh_CN.msi

Similarly, 64-bit systems (with 64bit, or x86_64, x64, etc.).

    • 64-bit program installation package: Http://download.tortoisegit.org/tgit/1.8.12.0/TortoiseGit-1.8.12.0-64bit.msi
    • 64 Chinese Language Pack: Http://download.tortoisegit.org/tgit/1.8.12.0/TortoiseGit-1.8.12.0-64bit.msi

The version download page looks like this:

Please download the corresponding installation package and language pack and put it in a directory. Then, like the Git installation package described in the previous section, view the downloaded file properties and unlock it.

Installation

4. We need to install the package first and then install the Language Pack (LanguagePack). Because Tortoisegit is just a shell, you have to rely on a git Core, which is the git we installed in the previous section. So make sure you have completed the previous section before installing. The following is a 64-bit version of the demo (64, 32-bit except the file name is different, the other operations are consistent)

5. Double-click the installer TortoiseGit-1.8.12.0-64bit.msi . Pop up the Installation Wizard interface:

6. Next, enter the copyright information interface. Just click Next (Next).

6.1 Next, select the SSH client. You can choose Tortoisegitplink (located under the Tortoisegit installation directory/bin), or you can choose the git default SSH client, which is located in the Git installation directory/bin/ssh.exe (if Path is configured, it is ssh.exe directly)

7. Next, select the installation directory, either by default, or by installing the program components in the development environment directory to remain the default:

8. Next to confirm the installation interface, click the Install button installed, as shown in:

9. When the installation is complete, click the Finish button:

9.1 If you have an older version, select Overwrite, close the old program and try restarting

10. Install the Language pack

Double-click TortoiseGit-LanguagePack-1.8.12.0-64bit-zh_CN.msi to open the Language Pack Installation Wizard:

11. Click Next (alt+n) and the language pack will be installed automatically:

Click the Finish button to

Configuration

1. First, select a directory to store your Git project, which is easy to manage. such as: F:\STUDY\GIT_STUDY , and then open it in Resource Manager.

2. Right-click in the blank, select-Tortoisegit-Settings, then you can see the configuration interface:

3. Select general and choose Chinese in the language on the right. If you do not check the auto-upgrade checkbox, you may also need to specify the path to the Git.exe file, such as " D:\DevlopPrograms\Git\bin ". When you are finished, click Apply to confirm the Close dialog box. ( Of course, you can also continue to use English)

4. Click the right mouse button again, you can see the pop-up menu has become Chinese. The original Settings becomes set; Clone becomes clone.

5. Configure the right-click menu. In the Settings dialog box, click on the "Right-click menu" On the left and remove all the checkboxes on the right so that the right-click menu looks cleaner:

6. Set the Remember password

!!!!! The password is stored in C:\Users\Administrator\.git-credentials this file in clear text, please use it carefully.

Go to Settings and click on the Git tab on the left. You can find the user's name and email message on the right. As shown in the following:

Because there are currently no local items, the 编辑本地 .git/config(L) button is grayed out, and if you open the configuration dialog under a local GIT project, the button is available and you can edit some of the properties of the item.

Clicking the 编辑全局 .git/config(O) button will open the global profile using Notepad, and in the global configuration file, add the following:

[credential]helper = store

Save when you're done, close Notepad, and OK.

When you push a project to an online repository such as GitHub, you'll remember the username and password you entered (this is not the user's name and email.)

If you are editing 本地 .git/config(L) , in fact, this translation is a local problem, should be called, that is, 局部 under a project set, only valid for this project. Configuration is the same.

    • User name: Is your registered account, such as: TIEMAOCSDN
    • Password: Of course, the password to fill in the registration: *********
    • E-mail: Is your contact email, to contact you when you use
    • User name/Nickname: can be taken casually, but it's better to have some meaning
Example

Cloning a project:

In the working directory, such as " F:\STUDY\GIT_STUDY ," right-click in the Blank Space, select: Tortoisegit---Clone ... (Clone ...) The Clone dialog box appears, as shown in:

Fill in the URL with the access address of the item, such as:

https://github.com/cncounter/translation.git

Local directory, you can also choose your own, generally by default. Then click the "OK" button to start cloning the project. Depending on the project size, the time will be different. After cloning is complete, if there is no error, you will be prompted:

    • Cloning: It is similar to a copy, but because a repository such as Svn,git is stored as a (data) library, it is called a clone.
    • Git project URL: You can access the GIT project page online, you can see SSH, HTTPS, SVN access path on the right.

For example:

    • Page Address: https://github.com/cncounter/translation
    • Https:https://github.com/cncounter/translation.git
    • SSH: [Email protected]:cncounter/translation.git
    • Svn:https://github.com/cncounter/translation

Can be found, very similar. As shown in the following:

Related articles

    1. Directory
    2. Installing and configuring Git
    3. Installation and Configuration Tortoisegit
    4. Git and tortoisegit basic operations
    5. markdown Example
    6. Solve the tortoisegit strange bad file number problem
    7. Join QQ Group GitHub home: 225932282

Date: 2014-11-27
Author: anchor: Http://blog.csdn.net/renfufei

http://blog.csdn.net/renfufei/article/details/41647937

Tortoisegit Installation and configuration (RPM)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.