Skip to content

Instantly share code, notes, and snippets.

注册google邮箱时:“此电话号码无法用于进行验证”的解决办法

解决办法:使用iphone google邮箱客户端注册

@wangxianhe
wangxianhe / git_toturial
Created December 30, 2017 08:40 — forked from guweigang/git_toturial
git命令大全
git init # 初始化本地git仓库(创建新仓库)
git config --global user.name "xxx" # 配置用户名
git config --global user.email "xxx@xxx.com" # 配置邮件
git config --global color.ui true # git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto
git config --global --unset http.proxy # remove proxy configuration on git
git clone git+ssh://git@192.168.53.168/VT.git # clone远程仓库
@wangxianhe
wangxianhe / github使用介绍.md
Last active December 29, 2017 12:25
github使用介绍

一级标题

二级标题

三级标题

加粗字体

倾斜

引用

@wangxianhe
wangxianhe / gist使用介绍.md
Last active December 28, 2017 12:23
gist 使用方法介绍

gist功能:

1、记录代码片段; 2、记录技术文档; 3、分享; 4、快速检索; 5、页面简约、操作简单;

参考:

http://gohom.win/2015/11/26/gist/

@wangxianhe
wangxianhe / centos yum 升级gcc.md
Last active May 2, 2018 08:56
centos gcc 升级

Centos6.5操作系统自带gcc版本太低了,有时候编译软件的时候需要高版本的gcc。 升级gcc最好的方式还是用yum,因为自己编译源码有可能功能不全。下面是从网上找的使用YUM升级GCC的方法。很方便,学习了。

参考: https://gist.github.com/stephenturner/e3bc5cfacc2dc67eca8b