git

Back Open Paginator
21.08.2025 09:32
musicmatze (@musicmatze@social.linux.pizza)

I really have to write a #blog post titled "I hate rebase-merge workflows"

#git #softwaredevelopment #workflow #github




Show Original Post


21.08.2025 09:25
hacker_news_bot (@hacker_news_bot@mastodon.social)

📜 Latest Top Story on : Show HN: I replaced vector databases with Git for AI memory (PoC)
🔍 Original Story: github.com/Growth-Kinetics/Dif
👤 Author: alexmrv
⭐ Score: 29
💬 Number of Comments: 5
🕒 Posted At: 2025-08-21 06:20:11 UTC
🔗 URL: news.ycombinator.com/item?id=4




Show Original Post


21.08.2025 08:47
h4ckernews (@h4ckernews@mastodon.social)

I replaced vector databases with Git for AI memory (PoC)

github.com/Growth-Kinetics/Dif




Show Original Post


21.08.2025 06:24
coatless (@coatless@mastodon.social)

Your main website repo shouldn't be a storage unit for every plot you've ever made 📦

: Give your figures their own space, keep your repo fast

blog.thecoatlessprofessor.com/




Show Original Post


21.08.2025 05:54
drscriptt (@drscriptt@oldbytes.space)

I ran into a problem today where I needed to use different protocols / authentications methods / URLs for pulling (fetch) from and pushing to a #git repo.

It turns out that it's relatively straight forward to do:

--8<--
# git remote set-url --push ${REMOTE} ${URL}
-->8--

I was using a Deployment Key to for read-only pull (fetch) from a private GitHub repo, but I needed the ability to authenticate as myself to be allowed commit and push. -- Automation can pull (fetch) from the repo but is prevented from writing to it.

After changing the URL line in the .git/config file a few times, I searched and found that there is an easy way to have different protocols / authentication methods / URLs for pull (fetch) and push.

I thought that it might be the case, as I'd seen that `git remote -v` listed the same remote twice with the difference being `(fetch)` and `(pull)` on the two lines.

--8<--
# git remote -v
${REMOTE:-origin} ${URL} (fetch)
${REMOTE:-origin} ${URL} (push)
-->8--




Show Original Post


21.08.2025 02:17
GripNews (@GripNews@mastodon.social)

🌗 程式碼審查可以更進步
➤ 從 Git Commit 體驗程式碼審查的新可能
tigerbeetle.com/blog/2025-08-0
本文探討了現有程式碼審查工具(特別是 GitHub)的不足之處,作者嘗試開發名為 `git-review` 的工具,將審查意見直接嵌入程式碼,並以單一 Git Commit 的形式管理,以期改善審查效率。儘管此方法在技術層面上展現了優勢,例如本地化審查、直接修改程式碼並獲得開發環境的支援,但實際執行時面臨許多細節上的挑戰,包括版本衝突、強制推送的摩擦以及與 Git 核心功能的潛在不相容。最終作者回到基於網頁的審查方式,並期望未來能有更完善的解決方案。
+ 作者的想法很有趣,將審查意見視為 Git Commit 的一部分,這確實能帶來更順暢的本地開發體驗。但看來實作細節纔是真正的難關。
+ 我也曾遇到 GitHub 審查介面延遲的問題,非常期待有人能提出真正解決這個痛點的方案。將審查與版本控制更緊密結合是個好方向。




Show Original Post


21.08.2025 01:26
kkarhan (@kkarhan@infosec.space)

@shironeko #git or #rsync ?




Show Original Post


21.08.2025 00:18
jnpn (@jnpn@mastodon.social)

woh, jujutsu is already leaking into git

lore.kernel.org/git/20250819-b

that's amazing. kudos to martin and his mates




Show Original Post


20.08.2025 22:15
mysticmode (@mysticmode@mastodon.sdf.org)

Interesting discussion on Lobsters about Code review.

I like this workflow:
lobste.rs/s/zxglnn/code_review

#git #programming




Show Original Post


20.08.2025 22:03
mysticmode (@mysticmode@mastodon.sdf.org)

Interesting discussion on Lobsters about Code review.

I like this workflow:
lobste.rs/s/zxglnn/code_review

#git #programming

#ditch #github !




Show Original Post


20.08.2025 20:06
thalskarth (@thalskarth@frikiverse.zone)

Hacer push a varios remotes de Git al mismo tiempo
blog.thalskarth.ar/push-varios

#EnMiBlog #Blog #git




Show Original Post


20.08.2025 17:04
ngate (@ngate@mastodon.social)

🐱‍👤 Oh no, the have rebelled and are now the gatekeepers of the kernel! Who knew that protecting the web from AI meant enlisting to thwart your clones? 🤖 Seriously, at this point, even Tux is rolling his eyes. 🙄
lock.cmpxchg8b.com/anubis.html




Show Original Post


1 ...314 315 316 317 318 319 320 321 322 323 324 ...347
UP