bluetoothlover_doc icon indicating copy to clipboard operation
bluetoothlover_doc copied to clipboard

this is about the learning station about friends.

Results 119 bluetoothlover_doc issues
Sort by recently updated
recently updated
newest added

https://support.microsoft.com/zh-cn/account-billing/%E4%B8%8B%E8%BD%BD%E5%B9%B6%E5%AE%89%E8%A3%85microsoft-authenticator%E5%BA%94%E7%94%A8-351498fc-850a-45da-b7b6-27e523b8702a

【合集·ESP32 IDF SDK软件开发-哔哩哔哩】 https://b23.tv/oh30x7R

- 默认hooks目录为仓库根目录:.git/hooks/下,但是该目录不能被git仓库管理 - 如果希望hooks脚本,git clone下来就有,而不需要其他同事自己配置,可以进行如下操作 - 如果您希望将 Git 钩子脚本放在仓库根目录下的 .hooks 目录中,而不是 .git/hooks 目录中,您可以使用 core.hooksPath 选项来配置 Git。 首先,您需要在终端中进入您的 Git 仓库目录,并使用以下命令设置 core.hooksPath: `git config --global core.hooksPath .hooks` 这将设置 Git 钩子脚本的路径为仓库根目录下的 .hooks 目录。接下来,您可以将您的自定义钩子脚本放在...

【2021/11/7】 1. docker 与RT-THREAD 2. formatting脚本 3. wio terminal 4. 论坛答题感悟,有苦有甜 5. nimble 更新到最新的代码,和主分支同步。 6. 社区制度如何能够长久进行下去。

https://mp.weixin.qq.com/s/WgLWWoqvSYeFsBBoANkeqw

将格式化作为自动化的动作,放在git commit 之前。

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

## git error: src refspec dev does not match any 提交本地修改到云端时,报这个错误。是因为本地没有创建这个分支。 ![image](https://user-images.githubusercontent.com/28744220/145745336-a71c5eef-940e-4941-8088-ed974f286db7.png) 可以新建一个分支,然后再提交 ``` $ git checkout -b wechat_private $ git push origin wechat_private ```