小红花·文摘
  • 首页
  • 广场
  • 排行榜🏆
  • 直播
  • FAQ
Dify.AI
研究人员在GitHub的“Oops Commits”中发现数千个泄露的秘密

安全研究员Sharon Brizinov与Truffle Security合作,调查GitHub上的“oops commits”,发现大量遗留的高价值秘密,如令牌和管理员凭证。他们发布了开源工具“Force Push Scanner”,帮助用户扫描潜在泄漏。研究表明,开发者常误认为删除的提交是安全的,实际上仍可被访问。建议使用秘密管理工具和环境变量,并定期扫描旧提交,以防敏感数据泄露。

研究人员在GitHub的“Oops Commits”中发现数千个泄露的秘密

InfoQ
InfoQ · 2025-09-04T12:00:00Z

Conventional Commits 规范通过结构化提交信息,提高 Git 提交日志的可读性,解决模糊提交信息带来的沟通和追溯问题,鼓励开发者明确变更类型、范围和描述,促进团队协作与自动化流程。

拯救你的Commit Log:Conventional Commits实践指南

Tony Bai
Tony Bai · 2025-04-24T14:09:01Z
使用Conventional Commits编写Git提交的最佳实践

清晰的提交信息对代码历史维护至关重要。采用Conventional Commits规范可提高提交信息的可读性和一致性,便于团队协作和项目维护。良好的提交应简洁明了,使用命令式语气,避免标点,并在必要时提供详细描述。这一规范有助于自动化版本管理和变更日志生成。

使用Conventional Commits编写Git提交的最佳实践

DEV Community
DEV Community · 2025-03-22T20:44:50Z

文章强调语义化提交在代码版本管理中的重要性。通过遵循特定格式,语义化提交使项目历史更清晰,提升团队沟通效率。常见提交类型包括新增功能、修复错误和更新文档。文章还建议如何编写清晰的提交信息,并强调其对项目组织和持续集成的好处。

Semantic Commits: Organizing Chaos with Message Standards

DEV Community
DEV Community · 2024-10-16T00:43:49Z
你还在用 git checkout 做所有事情吗?是时候切换到 git switch 了

Git社区引入了两个新命令git switch和git restore,以简化之前由git checkout处理的任务。git switch用于切换分支或创建新分支,而git restore用于从特定提交中恢复文件或忽略暂存区或工作区的更改。这些新命令旨在使Git操作更清晰,减少用户的困惑。

你还在用 git checkout 做所有事情吗?是时候切换到 git switch 了

DEV Community
DEV Community · 2024-09-21T23:23:08Z

Hello! I’ve been extremely slowly trying to figure how to explain every core concept in Git (commits! branches! remotes! the staging area!) and commits have been surprisingly tricky. Understanding...

Do we think of git commits as diffs, snapshots, and/or histories?

Julia Evans
Julia Evans · 2024-01-05T14:00:51Z

Why large companies and fast-moving startups are banning merge commits

Graphite blog
Graphite blog · 2023-11-07T00:00:00Z

See how 1Password can be used to sign your commits on Gitpod with SSH keys and biometric confirmation

Signing Commits on Gitpod with 1Password

Blog - Gitpod
Blog - Gitpod · 2023-02-21T11:00:00Z

I like to poke around the PostgreSQL Git repository to find interesting statistics and trends that affect PostgreSQL development. The question I had lately is, what are the largest patches that...

Peter Eisentraut: PostgreSQL largest commits

Planet PostgreSQL
Planet PostgreSQL · 2023-01-11T05:00:00Z

How to display commits created on a specific day with the git log command Agil Antony Mon, 10/24/2022 - 03:00 The git log command offers many opportunities to learn more about the commits made by...

How to display commits created on a specific day with the git log command

Opensource.com
Opensource.com · 2022-10-24T07:00:00Z

Consuming data from a remote foreign database into our local database just like another local table is a great feature that adds an excellent level of flexibility to the design of a database...

Parallel Commits for Transactions Using postgres_fdw on PostgreSQL 15

Percona Database Performance Blog
Percona Database Performance Blog · 2022-07-14T14:00:45Z

We often need to squash several related commits to make the commit history cleaner. There are several different ways to achieve this.

How to Squash Last N Commits in Git?

jdhao's blog
jdhao's blog · 2022-01-09T03:47:17Z

In this post, I would like to share how to squash commits using git-rebase.

A Guide on Squashing Commits with git-rebase

jdhao's blog
jdhao's blog · 2021-06-28T15:43:56Z

在学习开源项目时,最好是从头开始看源码,这就需要快速定位到早期的commits。

如何快速查看github代码库中早期commits

方寸之间
方寸之间 · 2020-12-03T02:32:58Z

如果你想要学习一个开源库,最好的方法就是从头开始看源码,所以你可能想要从第一次 commit 开始看。有的人可能觉得很简单啊,进入 commit 页面直接翻到最后一页就好了啊。的确,如果是你看的是一个小的项目,提交次数不会太多,你可能翻几页就到最后了,可是,如果是像 Linux 这种项目,将近 100k 次提交,手动翻页翻到明年了。。。 这时候就需要一个简单的方法能够定位到第一次...

如何快速查看github代码库中早期commits

方寸之间
方寸之间 · 2020-12-03T02:32:58Z

如何快速查看 github 代码库中早期 commits

方寸之间
方寸之间 · 2020-12-03T02:32:58Z

如何快速查看 github 代码库中早期 commits

方寸之间
方寸之间 · 2020-12-03T02:32:58Z

VSCode Conventional Commits 插件可以帮助你轻松按照 Conventional Commits 规范编写提交信息。 功能 支持使用项目下的 commitlint 规范。 支持自动 add 和 push(需要结合 VSCode 的 git 插件,详见插件文档)。 支持项目级别的 scope 管理。 支持...

VSCode Conventional Commits 插件

Vivaxy's blog
Vivaxy's blog · 2020-04-30T00:00:00Z

VSCode Conventional Commits extension helps you to fill in commit messages according to Conventional Commits. Features Respect commitlint configs. Support auto add and push (with the configutation...

VSCode Conventional Commits Extension

Vivaxy's blog
Vivaxy's blog · 2020-04-29T00:00:00Z

在深入理解 gitrevisions里面我分享了自己对 git-revisions 的理解,理解 git-revisions 最终的目的是为了让我们更好的使用 git,也就是: Play with Commits

Git - Play With Commits

Posts on 眯眼探云
Posts on 眯眼探云 · 2017-10-17T07:19:40Z
  • <<
  • <
  • 1 (current)
  • >
  • >>
👤 个人中心
在公众号发送验证码完成验证
登录验证
在本设备完成一次验证即可继续使用

完成下面两步后,将自动完成登录并继续当前操作。

1 关注公众号
小红花技术领袖公众号二维码
小红花技术领袖
如果当前 App 无法识别二维码,请在微信搜索并关注该公众号
2 发送验证码
在公众号对话中发送下面 4 位验证码
小红花技术领袖俱乐部
小红花·文摘:汇聚分发优质内容
小红花技术领袖俱乐部
Copyright © 2021-
粤ICP备2022094092号-1
公众号 小红花技术领袖俱乐部公众号二维码
视频号 小红花技术领袖俱乐部视频号二维码