Skip to content

Instantly share code, notes, and snippets.

@sding921
sding921 / README-Template.md
Created May 20, 2019 22:08 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@sding921
sding921 / README.md
Created August 14, 2017 20:38 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@sding921
sding921 / git_toturial
Created April 6, 2017 21:15 — forked from guweigang/git_toturial
git命令大全
git init # 初始化本地git仓库(创建新仓库)
git config --global user.name "xxx" # 配置用户名
git config --global user.email "[email protected]" # 配置邮件
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://[email protected]/VT.git # clone远程仓库