Last updated 2 years, 8 months ago
Last updated 2 years, 8 months ago
官方网站 https://www.yu444.com
客服频道 @kefu
供求频道 @gongqiu
公群频道 @hwgq (汇旺公群首字母)
新群 @xinqun
核心大群 @daqun
记账机器人 @hwjz
公司介绍 @hwdbgs
担保流程 @dbliucheng
Last updated 1 month, 3 weeks ago
#TIPS 快速生成 .gitignore
### 1. gitignore 命令行工具
gitignore
是一个命令行工具,它能够从 GitHub’s gitignore templates 仓库中生成 .gitignore
文件。
#### 安装
如果你已经安装了 Node.js,可以通过 npm 安装 gitignore
:
```
npm install -g gitignore
```
#### 使用方法
安装后,你可以使用 gitignore
命令来生成 .gitignore
文件。例如,为 Node.js 项目生成 .gitignore
:
```
gitignore node
```
这条命令将从 GitHub 上下载最新的 Node.js .gitignore
模板并保存到当前目录。
### 2. gibo(Gitignore Boilerplates)
gibo
是另一个流行的命令行工具,用于快速生成 .gitignore
文件,它同样从 GitHub’s gitignore 模板仓库下载。
#### 安装
你可以通过 brew
(macOS) 或直接从源代码安装 gibo
:
```
brew install gibo
```
或者,使用以下命令克隆并安装:
```
git clone https://github.com/simonwhitaker/gibo.git ~/bin/gibo
echo 'export PATH="$PATH:$HOME/bin/gibo"' >> ~/.bash_profile
source ~/bin/gibo/gibo-completion.bash
```
#### 使用方法
要为特定技术栈生成 .gitignore
文件,只需运行:
```
gibo Node VisualStudioCode > .gitignore
```
这条命令会将 Node 和 Visual Studio Code 的模板合并到一个 .gitignore
文件中。
### 3. 使用 gitignore.io 的 CLI 工具
如果你经常使用 gitignore.io,在命令行中使用它也是可能的。它提供了一个 API,可以直接通过 curl 来使用:
```
curl -L -s https://www.toptal.com/developers/gitignore/api/node,visualstudiocode > .gitignore
```
这条命令将为 Node.js 和 Visual Studio Code 生成 .gitignore
文件。
GitHub
GitHub - github/gitignore: A collection of useful .gitignore templates
A collection of useful .gitignore templates. Contribute to github/gitignore development by creating an account on GitHub.
? 2024 第一期周刊
? Vue 3.4 (代号灌篮高手)发布
新特性有
- 模板解析速度提升 2 倍 (htmlparser2)
- 更高效的反应系统(如果计算属性的 value 不发生变化不会触发响应,合并来自多个依赖的响应)
- defineModel 稳定
- v-bind 同名简写 :user="user" 可以简写为 :user
- 对水合不匹配的错误提示做了改进
- 添加了生产错误参考和编译时标志参考的文档
? css-wrapped-2023
chrome developer 发布了2023年度的 CSS 封装
? Flex 和 Grid 学习资源
通过两个免费的游戏学习 Flex 和 Grid 布局
- https://codepip.com/games/flexbox-froggy/
- https://cssgridgarden.com
Grid 交互式指南
https://www.joshwcomeau.com/css/interactive-guide-to-grid
Chrome for Developers
CSS 封装:2023 年! | Blog | Chrome for Developers
2023 年对 CSS 来说是重要的一年!了解今年哪些登陆 Chrome 和整个网络平台。
Last updated 2 years, 8 months ago
Last updated 2 years, 8 months ago
官方网站 https://www.yu444.com
客服频道 @kefu
供求频道 @gongqiu
公群频道 @hwgq (汇旺公群首字母)
新群 @xinqun
核心大群 @daqun
记账机器人 @hwjz
公司介绍 @hwdbgs
担保流程 @dbliucheng
Last updated 1 month, 3 weeks ago