Just did another utility function that I've been looking towards for a lot of time: `openremote` is a bash/zsh function that uses git to determine if you're inside a git repository, and if you are, uses `awk` and `sed` to open the URL in your default browser (on macOS˜):
```bash
openremote () {
if [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then
open $(git remote -v | grep origin | grep fetch | awk '{print $2}' | sed 's/ssh/https/g')
else
echo "Not inside a git repository."
fi
}
```
The `sed` command replaces `ssh` for `https` to get a URL that will be properly redirected by the corresponding repository.
#CLI #CommandLineInterface #Git #macOS
#heptapod 18.7.4 released, bumping #gitlab to the 18.7.4 regular patch/security version
Changelog: https://foss.heptapod.net/heptapod/heptapod/-/blob/heptapod-18.7.4/HEPTAPOD_CHANGELOG.md
Download instructions: https://heptapod.net/pages/get-heptapod.html#get-heptapod #git #mercurial
New blog post: "More Jujutsu tricks"
https://schafe-sind-bessere-rasenmaeher.de/tech/more-jujutsu-tricks/
I've learned a lot in the last two weeks and wanted to share it with you. 🙂
#git #jj #notThatJujutsu #blog
STOP THE DEPLOY!
A scandal has occurred in high society!
Poor Lord Jenkins has lost his wits (and his API keys). He committed secrets to the public repo!
The Queen of Security is NOT amused. 👑💀
Watch the execution here: https://youtube.com/shorts/8v-DtVjX7To
#Git #CloudNative #DevOps #ProgrammerHumor
Backed up my stuff and deleted my #github account.
I don't really code, and wasn't using it anymore.
If I need #git, I'll set up #forgero or use #codeberg
So… farewell #autodesk #eagle.
Shutting down the software I was using for over ten years by the end of '26 and force me to use their stupid and slow Cloud with Fusion for #ecad.
No #git, no easy way working locally…
So long and thanks for all the fish 👍🏻😔
🔍 Desmistificando o Debate Git vs. GitHub: Entendendo as Principais Diferenças 🖥️🔗
Git e GitHub são frequentemente confundidos, mas possuem funções distintas no mundo do desenvolvimento. Descubra as diferenças essenciais entre eles e como cada um pode beneficiar seus projetos!
👉 Saiba mais no blog: https://nova.escolalinux.com.br/blog/desmistificando-o-debate-git-vs-github-entendendo-as-principais-diferenas?utm_source=dlvr.it&utm_medium=mastodon
#Git #GitHub #Desenvolvimento #Tecnologia #CódigoAberto
Wednesday Links - Edition 2026-02-11
https://dev.to/0xkkocel/wednesday-links-edition-2026-02-11-306l
#java #jvm #testcontainers #git #reflection #git
Waiting for the day when some adds AI to git's merge algorithms to avoid conflicts while cherry-picking, rebasing, merging.
Well. Do I? Not really.
Thomas Dohmke (@ashtom)
EntireHQ에서 첫 릴리스인 'Checkpoints'를 공개했습니다. Checkpoints는 에이전트 컨텍스트를 퍼스트클래스, 버전화된 데이터로 Git에 자동 캡처하는 새로운 프리미티브로, 현재 Claude와 GeminiApp CLI에서 사용 가능하며 곧 모든 에이전트에 확장될 예정이라고 합니다.
https://x.com/ashtom/status/2021288115172962344
#entirehq #checkpoints #agents #claude #git
entireio/cli: Entire is a new developer platform that hooks into your git workflow to capture AI agent sessions on every push, unifying your code with its context and reasoning.
"Entire hooks into your git workflow to capture AI agent sessions on every push. Sessions are indexed alongside commits, creating a searchable record of how code was written in your repo.
Link: https://github.com/entireio/cli
#linkdump #agent #ai #development #git #tool