e2k19 Hackathon Report: Stefan Sperling on GoT and wireless
https://undeadly.org/cgi?action=article;sid=20191219205600 [undeadly.org]
2019-12-20 03:51
absolutely lovely!
tag: git
e2k19 Hackathon Report: Stefan Sperling on GoT and wireless
https://undeadly.org/cgi?action=article;sid=20191219205600 [undeadly.org]
2019-12-20 03:51
absolutely lovely!
Git submodule update command execution
https://gitlab.com/gitlab-com/gl-security/disclosures/blob/master/003_git_submodule/advisory.md#git-submodule-update-command-execution [gitlab.com]
2019-12-11 02:30
The git submodule update operation can lead to execution of arbitrary shell commands defined in the .gitmodules file.
source: grugq
How I accidentally took down GitHub Actions
https://blog.teddykatz.com/2019/11/12/github-actions-dos.html [blog.teddykatz.com]
2019-11-20 04:58
Commit shorthashes have a major problem: As a repository accumulates a large number of commits, eventually it will contain two commit hashes that start with the same seven characters (and have the same shorthash). After this happens, tools that use shorthashes will start to break because the commit shorthash is ambiguous (it’s no longer a pointer to a single commit). Due to the birthday problem, any repository that has at least 19291 commits is likely to have a pair of ambiguous commits somewhere. So if we waited for the actions/docker repo to have tens of thousands of commits, one of the shorthashes would eventually become ambiguous and break someone’s build.
source: R
Game of Trees
https://www.openbsd.org/papers/eurobsdcon2019-gameoftrees.pdf [www.openbsd.org]
2019-09-27 19:48
Game of Trees is a work-in-progress version control system which attempts to be appealing to OpenBSD developers.
Game of Trees
https://gameoftrees.org/index.html [gameoftrees.org]
2019-08-11 04:11
Game of Trees (Got) is a version control system which prioritizes ease of use and simplicity over flexibility. Got is still under development; it is being developed exclusively on OpenBSD and its target audience are OpenBSD developers.
source: L
Introducing git-revise
https://mystor.github.io/git-revise.html [mystor.github.io]
2019-08-06 16:45
git-revise is a history editing tool designed for the patch-stack workflow. It’s fast, non-destructive, and aims to provide a familiar, powerful, and easy to use re-imagining of the patch stack workflow.
source: L
The Emojiency
https://twitter.com/chaosprime/status/1119783694611488768 [twitter.com]
2019-04-25 02:38
last week i got to witness an engineering department lose a full day’s work because if you put an emoji in a git commit message, Atlassian Bamboo chokes on it forever and you’re forced to rebase master, like you should NEVER DO.
source: grugq
Tig: text-mode interface for Git
https://jonas.github.io/tig/ [jonas.github.io]
2019-02-14 21:01
Tig is an ncurses-based text-mode interface for git. It functions mainly as a Git repository browser, but can also assist in staging changes for commit at chunk level and act as a pager for output from various Git commands.
source: L
sr.ht, the hacker's forge, now open for public alpha
https://drewdevault.com/2018/11/15/sr.ht-general-availability.html [drewdevault.com]
2018-11-15 17:20
For those who are new, let me explain what makes sr.ht special. It provides many of the trimmings you’re used to from sites like GitHub, Gitlab, BitBucket, and so on, including git repository hosting, bug tracking software, CI, wikis, and so on. However, the sr.ht model is different from these projects - where many forges attempt to replicate GitHub’s success with a thinly veiled clone of the GitHub UI and workflow, sr.ht is fundamentally different in its approach.
source: L
please don't "distrupt" my dotfiles, tech industry
https://twitter.com/garybernhardt/status/1062760973457514496 [twitter.com]
2018-11-14 23:00
An npm module named husky destructively added pre- and post-commit hooks to my dotfiles repo (literally ~/.git!). Or maybe some other module told it to do that. I never asked for that. I don’t understand why the JavaScript tool ecosystem is like this!
You know what they say, you install someone’s code on your computer, it’s their computer now.
Announcing the May 2018 Git Security Vulnerability
https://blogs.msdn.microsoft.com/devops/2018/05/29/announcing-the-may-2018-git-security-vulnerability/ [blogs.msdn.microsoft.com]
2018-05-30 01:54
Son of .. returns.
The solution to this problem is quite simple and effective: submodule’s folder names are now examined more closely by Git clients. They can no longer contain .. as a path segment, and they cannot be symbolic links, so they must be within the .git repository folder, and not in the actual repository’s working directory.
source: HN
Repo style wars: mono vs multi
http://www.gigamonkeys.com/mono-vs-multi/ [www.gigamonkeys.com]
2017-11-20 22:14
The fundamental difference between the monorepo and multirepo philosophies boils down to a difference about what will allow teams working together on a system to go fastest.
source: L
Why you should stop using Git rebase
https://medium.com/bekk/why-you-should-stop-using-git-rebase-5552bee4fed1 [medium.com]
2017-10-30 14:09
I think you should keep your history true. Get comfortable with tools to analyse it, and don’t fall for the temptation to rewrite it. The rewards for rewriting are minimal, but the risks are great. You’ll thank me the next time you are bisecting through your history to track down a sneaky bug.
source: L
Exploding Git Repositories
https://kate.io/blog/git-bomb/ [kate.io]
2017-10-12 04:44
How do such a tiny repo cause git to run out of memory? The secret is that git de-duplicates “blobs” (which are used to store files) to make repositories smaller and allow using the same blob when a file remains unchanged between commits. Git also allows de-duplication of “tree” objects (which define the directory structure in a repository). git-bomb tries to make a billion files, however it only has 10 references to the file blob and only has 10 tree objects in all.
source: L
GitHub Enterprise SQL Injection
http://blog.orange.tw/2017/01/bug-bounty-github-enterprise-sql-injection.html [blog.orange.tw]
2017-01-08 21:36
Some post deobfuscation code review.
source: L
The Helpful Manager
http://thedailywtf.com/articles/the-helpful-manager [thedailywtf.com]
2017-01-03 21:06
Today’s 15 minutes of git hate, which isn’t really about git, but I choose to blame it anyway.