Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add: unofficial-lab-env/comp-organ-lab2: chisel + verilator #62

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guide-for-beginner/git-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Git 的管理是基于仓库(Repository)的,仓库可以看成一个储存
- 暂存区(Staging Area):即我们的缓存区,我们可以通过 `git add` 命令将工作区的文件(或文件的变动)添加到暂存区。暂存区存储了我们对文件的修改。
- 仓库(Repository):即我们的版本库,我们可以通过 `git commit` 命令将暂存区的文件提交到仓库。

值得注意的是,由于我们对文件的编辑都发生在工作目录下,所以我们增删文件或对文件进行修改,都只会影响工作区,而不会影响暂存区和仓库。所以我们可以很容易地撤销在工作区发生的修改,这也是 Git 的优势之一。 我们真正想要在仓库中修改一个文件,实际上需要经历三个步骤:
值得注意的是,由于我们对文件的编辑都发生在工作目录下,所以我们增删文件或对文件进行修改,都只会影响工作区,而不会影响暂存区和仓库。所以我们可以很容易地撤销在工作区发生的修改,这也是 Git 的优势之一。我们真正想要在仓库中修改一个文件,实际上需要经历三个步骤:

1. 在工作目录中修改文件。
2. 使用 `git add` 将修改的文件添加到暂存区。
Expand Down
2 changes: 1 addition & 1 deletion docs/popular-science/bash-dlc.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $ echo a{d,c,b}e
ade ace abe
```

大括号内还可以写数字/字符+增长,比如 `{x..y[..incr]}`
大括号内还可以写数字/字符 + 增长,比如 `{x..y[..incr]}`

大括号展开是严格 "词法" 的,它不会对任何特殊字符作出 "反应", 包括大括号自己:

Expand Down
Loading