git

Back Open Paginator
11.11.2025 15:51
ehmatthes (@ehmatthes@fosstodon.org)

How long do you keep a Git branch around after you merge it?

I have a habit of deleting the branch immediately after merging, but I've had to use the reflog to recover updates a few times over the last few years. I'm wondering if I should keep branches around a little longer before deleting.

#Python #Git




Show Original Post


11.11.2025 15:45
kubikpixel (@kubikpixel@chaos.social)

»Leaks auf Github — Top-KI-Unternehmen haben ihre Keys nicht im Griff:
Forscher haben auf Github allerhand private Schlüssel, Tokens und weitere Anmeldedaten von einem Großteil der Forbes AI 50 entdeckt.«

Sorry aber genau da sieht mensch wie professionell die wirklich sind. Auf Git ungeprüft Keys & Co. zu lagern macht man professionell nicht. So schlau sind die KI-Angestellten wohl.

🤷 golem.de/news/leaks-auf-github

#github #ki #itsicherheit #git #schlussel #tokens #nichtimgriffhaben #anmelden




Show Original Post


11.11.2025 15:32
HaraldKi (@HaraldKi@nrw.social)

Fun with git pickaxe. Try

git log --pickaxe-regex -S 'a.*zz'

and see that it takes ages.

Most regex engines let a dot not match an end of line. But pickaxe explicitly requests it. Therefore 'a.*zz' matches from every 'a' through to the last character of a diff in search for a pair of 'z'. If it does not find it, it moves to the next 'a' and starts over. Principle of the longest match.

Try with 'e.*zz' an explain why it takes even longer.😎

#git #regex #longestMatch #gitLogPickaxe




Show Original Post


11.11.2025 15:01
Jlongman (@Jlongman@mastodon.social)

Speaking of performance, I knew my plugin wouldn't be fast for any large repo - variously it indexed the repo into lucene then walked different branches to find containment. It's been to long for me to be specific about O-ness but it was definitely viable for small repos.




Show Original Post


11.11.2025 14:47
Jlongman (@Jlongman@mastodon.social)

fun fact, I wrote/adapted a git plugin for jira in 2008 (and 2012). The original was a subversion plugin and I changed the meat to speak git.

github.com/jlongman/jira-git-p

The license was MIT - or I released MIT, its been a while - so someone actually sold it for a while. I considered buying my own code when I had a specific issue but had to fix it myself in 2012.

The original subversion plugin was written by one of atlassian's co-founders.





Show Original Post


11.11.2025 14:05
mmarif (@mmarif@mastodon.social)

🚀 GitNex 11.0.0 is out!
This release brings a custom URL scheme for easier access to your own instances, plus new features and bug fixes.

✨ Highlights:
• Repository topics
• Add or delete topics
• View global repo settings as an instance admin

Release Notes: codeberg.org/gitnex/GitNex/rel




Show Original Post


11.11.2025 10:30
frankel (@frankel@mastodon.top)

Monorepo vs Multi-repo vs #Git submodule vs Git Subtree: A Complete Guide for Developers

levelup.gitconnected.com/monor




Show Original Post


11.11.2025 08:21
bison (@bison@mastodon.social)

18. Okt. 2020 13:16

i build @jujibla a sensor

how it started:
how it was going:
how it was going:
how it ended:

github.com/bison--/airMaster30





Show Original Post


11.11.2025 08:10
hadsn (@hadsn@mstdn.nere9.help)

#git のコミットに入っているパスって相対という認識でいいんだろうか?




Show Original Post


11.11.2025 06:18
reddit_tech_vn_bot (@reddit_tech_vn_bot@mastodon.maobui.com)

Công cụ GitLauncher giúp biến các dự án GitHub thành các file thực thi (executables) dễ dàng. Dành cho người dùng phổ thông và nhà phát triển để chia sẻ và test dự án nhanh chóng trên nhiều nền tảng.
#github #developer #tool #git #lập_trình #công_cụ

reddit.com/r/SideProject/comme




Show Original Post


11.11.2025 00:00
leanpub (@leanpub@mastodon.social)

Production Ready Data Science by Khuyen Tran is on sale on Leanpub! Its suggested price is $25.00; get it for $10.50 with this coupon: leanpub.com/sh/qlc7lF0x




Show Original Post


10.11.2025 22:22
markstos (@markstos@urbanists.social)

@HaraldKi How I get the list of commits to more more than about 10 lines high?

For the CLI, `tig reflog` is a fast reflog reviewer that will show as many lines of reflog history as fit on your screen.

#git




Show Original Post


1 ...198 199 200 201 202 203 204 205 206 207 208 ...348
UP