ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    git SSL Certificate problem- unable to get local issuer certificate

    Dec 16, 20212 min read

    Open Git Bash and run the command if you want to completely disable SSL verification.

    git config --global http.sslVerify false
    

    Note: This solution opens you to attacks like man-in-the-middle attacks. Therefore turn on verification again as soon as possible:

    git config --global http.sslVerify true
    

    相关文章

    MAC 把没用的键盘大小写换成ESC

    在Mac系统中,通过系统偏好设置将大写锁定键改为ESC键,以防止误触并方便在vim中快速访问ESC键。

    在JS 中哪些 api 会修改原数组的值?

    JavaScript中的API如`push()`, `pop()`, `shift()`, `unshift()`, `splice()`, `sort()`, `reverse()`, `fill()`, `copyWithin()`等可以直接修改原数组,使用时需谨慎。

    固态硬盘TBW 简介

    TBW是衡量SSD寿命的重要参数,表示其能承受的总字节写入量,高质量SSD通常拥有更高的TBW,购买时应考虑这一指标以确保高性能和长寿命。

    ThreeJs是什么,它与Web GL技术有什么关系?

    ThreeJs是一个简化了WebGL复杂性的JavaScript 3D库,旨在让开发者更容易地在网页中创建和展示3D图形、场景及虚拟现实环境。

    如何使用localStorage实现定时存储?

    使用JavaScript的setInterval和removeItem方法,可以实现localStorage的定时存储和删除功能。