You do not need to enter a password for git settings, removing the headache of entering a password for fetch/pull code every time. gitfetch

Source: Internet
Author: User

You do not need to enter a password for git settings, removing the headache of entering a password for fetch/pull code every time. gitfetch

You need to enter the password for https every time. You can enter the password once according to the following settings, without having to enter the password and enjoying the speed brought by https.

Set the Remember password (15 minutes by default ):

git config --global credential.helper cache

If you want to set the time, you can do this:

git config credential.helper 'cache --timeout=3600'

In this way, it will expire after an hour.

Long-term storage password:

git config --global credential.helper store

You can also add a password when adding a remote address. (Recommended)

http://yourname:password@git.oschina.net/name/project.git

Supplement: You can use the client to store the password.

If you are using ssh and want to experience the high speed brought by https, you can do this: switch to the project directory:

cd projectfile/

Remove repository addresses in remote ssh Mode

git remote rm origin

Add an https remote repository address

git remote add origin http://yourname:password@git.oschina.net/name/project.git

 

Related Article

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.