git proxy
      
      
      
        
          
          全局代理,写入配置12git config --global http.proxy 'socks5://127.0.0.1:1080'git config --global https.proxy 'socks5://127.0.0.1:1080'
清除配置12git config --glo
          ...
          
          
          
        
      
    
    
    
    
    
    
    
    
  Python里面的字符串格式化,非常方便,像:
1  | print("{key} 的值是:{value}".format(key="test", value="bbb"))  |