陈迎春

Results 19 issues of 陈迎春

https://club.rt-thread.org/ask/article/989d98539d4e7729.html https://club.rt-thread.org/ask/article/1b672b7e9c519e28.html

https://mp.weixin.qq.com/s/chJKz1LYnFcbxEmOPelTiQ https://mp.weixin.qq.com/s/rLDX_g0rSzTb9iQWP7Dlkw 汇总 https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzU2MDgyNzgyMw==&action=getalbum&album_id=1341389839287156737&scene=173&from_msgid=2247483787&from_itemidx=1&count=3&nolastread=1#wechat_redirect

以下是一个可以用于判断当前系统环境的shell脚本: ``` #!/bin/bash if [[ "$(uname)" == "Linux" ]]; then echo "当前系统环境为Linux" elif [[ "$(uname)" == "CYGWIN"* ]]; then echo "当前系统环境为Cygwin" elif [[ "$(uname)" == "MINGW"* ]]; then echo "当前系统环境为Mingw"...

https://www.keysight.com.cn/cn/zh/catalog-acc/key-16475/passive-probe-10-1-500-mhz-1-3-m.html

https://mp.weixin.qq.com/s/7kFZcgAzrTTrW1it0QHrGw

https://blog.csdn.net/u012145252/article/details/81775362 1. git config --global core.quotepath false ![image](https://user-images.githubusercontent.com/44871523/231915219-07bdc234-fbac-47aa-bb1c-119e07ec4f03.png)

[ALSA(高级Linux声音架构)浅析](https://mp.weixin.qq.com/s/d8WbgojU0kXbv68XLxxyPg)

![image](https://user-images.githubusercontent.com/44871523/226551498-3a823cf3-1f89-4315-be87-9d6e4c1eb533.png) ``` git merge命令是将一个分支合并到当前所在的分支中。以下是一些常见的选项: --no-ff:不要快进合并,即使可能是安全的。 --ff-only:只允许快进合并,如果不能快进合并,则会失败。 --squash:将所有提交压缩成一个提交,并将其合并到当前分支中。 --commit:将所有提交合并到当前分支,并创建一个新的提交。 --edit:将合并提交的提交信息打开编辑器以进行编辑。 --no-commit:将所有更改合并到当前分支中,但不要创建新的提交。 --strategy:指定用于合并的策略,如recursive(默认)或resolve。 --strategy-option:指定传递给合并策略的选项。 --verify-signatures:在合并之前验证提交的签名。 --no-verify:不要验证提交的钩子。 更多的选项和信息可以通过运行 git merge --help 命令来获取。 ```