
tool
jiahui07
Stay hungry, Stay foolish
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Markdown实用精简语法
1、表格 示例: item|value|qty -:|:-:|-:| computer|1600usd|5 phone|12usd|12 item value qty computer 1600usd 5 phone 12usd 12 2、分割线 示例: ***或者--- 3、超链接 示例:[百度网址](http://www.baidu.com) 百度网址 4、列表 示...原创 2019-03-02 01:11:09 · 208 阅读 · 0 评论 -
schema与命名空间的使用案例
xml使用schema时 <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http...原创 2019-03-25 21:22:48 · 383 阅读 · 0 评论 -
Git简明指南
起步 设置username&email $ git config --global user.name "John Doe" $ git config --global user.email johndoe@example.com 查看配置 git config --list 初始化仓库、跟踪文件并提交 $ git init $ git add *.c $ git add LICENS...原创 2019-03-23 19:50:57 · 368 阅读 · 0 评论