美文网首页
Centos7 安装 git

Centos7 安装 git

作者: 李小二的倔强 | 来源:发表于2021-04-28 16:10 被阅读0次
    执行命令:
    yum install -y git
    

    当你想拉去代码时,输入你Git的账号密码

    [root@worker odc]# git clone http://10.0.90.79/ODC/odc-node.git
    Cloning into 'odc-node'...
    Username for 'http://10.0.90.79': <你的git账号>
    Password for 'http://1363311****@163.com@10.0.90.79': 
    remote: Counting objects: 111, done.
    remote: Compressing objects: 100% (90/90), done.
    remote: Total 111 (delta 21), reused 0 (delta 0)
    Receiving objects: 100% (111/111), 43.36 KiB | 0 bytes/s, done.
    Resolving deltas: 100% (21/21), done.
    [root@worker odc]# 
    

    Linux- git——解决每次拉取、提交代码时都需要输入用户名和密码

    在开发中我们经常需要通过 git 对代码进行拉取和提交,频繁地输入用户名和密码会带来很大的麻烦,下面就介绍一下解决git每次拉取、提交代码时都需要输入用户名和密码的方法。很简单,只要两步骤就能实现:

    1.在~/.gitconfig目录下多出一个文件,用来记录你的密码和帐号
    git config --global credential.helper store
    
    2.再最后输入一次正确的用户名和密码,就可以成功的记录下来,这是最后一次麻烦啦!
    git pull
    

    相关文章

      网友评论

          本文标题:Centos7 安装 git

          本文链接:https://www.haomeiwen.com/subject/pkivrltx.html