美文网首页
Git tag 与避免重复输入密码

Git tag 与避免重复输入密码

作者: 子枫Eric | 来源:发表于2019-11-15 21:21 被阅读0次

    避免本地重复输入账号密码

    git config --global credential.helper store
    执行命令:
    git config --global credential.helper store
    git pull
    输入你的用户名和密码store模式会存储
    查看系统存储的用户名个密码
    cat ~/.git-credentials 
    

    tag

    git tag  //查看tag
     git tag test_tag c809ddbf83939a89659e51dc2a5fe183af384233    //在某个commit 上打tag
     git tag
    ...
     git push origin test_tag    //!!!本地tag推送到线上
    ...
     git tag -d test_tag        //本地删除tag
     git push origin :refs/tags/test_tag    //本地tag删除了,再执行该句,删除线上tag
    
    

    更新自动加载文件 composer dump-autoload

    更多精彩文章请关注 王明昌博客

    相关文章

      网友评论

          本文标题:Git tag 与避免重复输入密码

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