zoukankan      html  css  js  c++  java
  • linux下git怎么保存账号密码

    我是用 shell 命令来执行 git 操作的,所以就决定在 --global 配置一下用户名和密码,不用每次手动输入了。

    设置步骤

    1. 首先需要 ftp 连接到你的 Linux 服务器,在根目录(~/)下,使用 touch 命令创建文件 .git-credentials :

    touch .git-credentials
    

    2. 然后用 vim 命令编辑此文件:

    vim .git-credentials
    

    按 i 键进入编辑模式,输入:

    http(s)://{你的用户名}:{你的密码}@你的服务器地址
    

    注意:① 我的服务器是 http 的,所有这里不加 s 。② 去掉 {}

    3. 在终端下执行如下命令:

    git config --global credential.helper store
    

    4. 可以看到 ~/.gitconfig 文件会多一项:

    cat .gitconfig
    
    [credential]
    helper = store
    

    说明已经配置好了,再次 push 或 pull 试试看吧,不需要输入密码了。

  • 相关阅读:
    Netty Nio启动全流程
    线性表
    java stream 原理
    SpringBoot 分布式session
    mockito
    RxJava
    HandlerMapping 详解
    SpringMVC 架构
    Spring Cloud 配置服务
    SpringBoot常用配置简介
  • 原文地址:https://www.cnblogs.com/zhuiluoyu/p/7723949.html
Copyright © 2011-2022 走看看