Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmj01 committed May 13, 2024
1 parent d557018 commit 0123def
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 38 deletions.
4 changes: 3 additions & 1 deletion articles/markdown.md → articles/others/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,6 @@ $\left 1 2 3 4 5 6 7 8 9 \right$

## 其他

- [A WYSIWYG Markdown editor, improve reading and editing experience. and generate your Markdown files into online documents in the easiest and fastest way一个所见即所得的 Markdown 桌面编辑器,集成了 Mermaid 图形与 Katex 公式,支持明亮和暗黑风格。](https://github.com/1943time/bluestone)
- [A WYSIWYG Markdown editor, improve reading and editing experience. and generate your Markdown files into online documents in the easiest and fastest way一个所见即所得的 Markdown 桌面编辑器,集成了 Mermaid 图形与 Katex 公式,支持明亮和暗黑风格。](https://github.com/1943time/bluestone)

# [Marked Documentation](https://marked.js.org/)
4 changes: 0 additions & 4 deletions dev-note/bazel.md

This file was deleted.

8 changes: 7 additions & 1 deletion dev-note/buildSystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,10 @@
## [Ninja](https://ninja-build.org/)
> Ninja is a small build system with a focus on speed
[github](https://github.com/ninja-build/ninja)
[github](https://github.com/ninja-build/ninja)
[How To Install ninja-build on Ubuntu 20.04](https://installati.one/install-ninja-build-ubuntu-20-04/)

## [bazel](https://bazel.google.cn/?hl=en)
> a fast, scalable, multi-language and extensible build system.
[github代码](https://github.com/bazelbuild/bazel)
19 changes: 18 additions & 1 deletion dev-note/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,4 +222,21 @@ ssh -T [email protected] # 测试生成的是否连同
mkdir repo-foloder && cd repo-folder
git init
git remote add origin [email protected]:Username/Repositories_Name.git # 现在这样仓库就处理好了。
```
```

# Subversion


## 常用命令

- svn up(update)
- svn update -r r644 // 切换到版本644
- svn co(checkout) svn-path // checkout到指定路径
- svn add file // 添加文件
- svn commit -m "message" // 直接提交
- svn st(status) // 状态
- svn diff
- svn log file-path // 查看某个文件的历史记录
- svn revert
- svn merge -r 608:602 "" // 从r608回滚到r602
- svn info //
2 changes: 0 additions & 2 deletions dev-note/index.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# dev-note

- [git](/dev-note/git.md)
- [svn](/dev-note/svn.md)
- [cmake](/dev-note/cmake.md)
- [linux](/dev-note/linux.md)
- [ssh](/dev-note/ssh.md)
- [powershell](/dev-note/powershell.md)
- [wsl](/dev-note/wsl.md)
- [vscode](/dev-note/vscode.md)
Expand Down
12 changes: 11 additions & 1 deletion dev-note/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ sudo do-release-upgrade // 这步之后就按y(yes)N(no)或d(detail) 来确认
```shell
find . -name "*libc*"
```

- grep
- **grep -rn "xxx"**递归查找字符串xxx
- **--exclude=*.{min.js}**排除文件类型
Expand Down Expand Up @@ -113,6 +112,17 @@ export PATH=$PATH:/home/lmj/anacoda2
unset DOWNLOAD
```

### ssh(Secure Shell Protocol)

```shell
sudo apt-get update
sudo apt-get install openssh-server
sudo systemctl status ssh
sudo ufw allow ssh 防火墙 -- ubuntu
sudo systemctl disable --now ssh 禁用ssh
sudo systemctl enable --now ssh 启用
ssh [email protected] 登录
```
永久设置环境变量,可直接更改系统启动文件或当前用户的启动文件

- /etc/profile
Expand Down
11 changes: 0 additions & 11 deletions dev-note/ssh.md

This file was deleted.

16 changes: 0 additions & 16 deletions dev-note/svn.md

This file was deleted.

1 change: 1 addition & 0 deletions index.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import {} from './marked.v4.3.0.min.js';
import hljs from './highlight/core.min.mjs';
import languageJavascript from './highlight/languages/javascript.min.mjs';
import languageLua from './highlight/languages/lua.min.mjs';
Expand Down
2 changes: 1 addition & 1 deletion index/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

- [资源与工具](/articles/resource.md)
- [3D引擎](/cg/engines.md)
- [Markdown](/articles/markdown.md)
- [Markdown](/articles/others/markdown.md)
- [Mathjax](/articles/mathjax.md)
- [数学笔记](/articles/notes/math.md)
- [excel笔记](/articles/notes/excel.md)
Expand Down

0 comments on commit 0123def

Please sign in to comment.