git

Back Open Paginator
11.02.2026 18:13
juandesant (@juandesant@mathstodon.xyz)

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




Show Original Post


11.02.2026 18:07
heptapod (@heptapod@fosstodon.org)

#heptapod 18.7.4 released, bumping #gitlab to the 18.7.4 regular patch/security version
Changelog: foss.heptapod.net/heptapod/hep
Download instructions: heptapod.net/pages/get-heptapo #git #mercurial




Show Original Post


11.02.2026 17:32
irgndsondepp (@irgndsondepp@gts.da-miez.de)

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




Show Original Post


11.02.2026 17:29
DevOpsPink (@DevOpsPink@mastodon.social)

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: youtube.com/shorts/8v-DtVjX7To




Show Original Post


11.02.2026 16:41
frank (@frank@social.fraxoweb.com)

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




Show Original Post


11.02.2026 15:48
pmayer (@pmayer@social.tchncs.de)

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 👍🏻😔




Show Original Post


11.02.2026 15:02
escolalinux (@escolalinux@mastodon.social)

🔍 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: nova.escolalinux.com.br/blog/d




Show Original Post


11.02.2026 14:51
wednesdaylinks (@wednesdaylinks@foojay.social)

Wednesday Links - Edition 2026-02-11
dev.to/0xkkocel/wednesday-link
#java #jvm #testcontainers #git #reflection #git




Show Original Post


11.02.2026 13:24
taschenorakel (@taschenorakel@mastodon.green)

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.

#git #AI #MergeConflicts




Show Original Post


11.02.2026 09:47
sayzard (@sayzard@mastodon.sayzard.org)

Thomas Dohmke (@ashtom)

EntireHQ에서 첫 릴리스인 'Checkpoints'를 공개했습니다. Checkpoints는 에이전트 컨텍스트를 퍼스트클래스, 버전화된 데이터로 Git에 자동 캡처하는 새로운 프리미티브로, 현재 Claude와 GeminiApp CLI에서 사용 가능하며 곧 모든 에이전트에 확장될 예정이라고 합니다.

x.com/ashtom/status/2021288115

#entirehq #checkpoints #agents #claude #git




Show Original Post


11.02.2026 08:07
tobru (@tobru@mstdn.social)

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: github.com/entireio/cli

#linkdump #agent #ai #development #git #tool




Show Original Post


11.02.2026 07:38
teajaygrey (@teajaygrey@snac.bsd.cafe)
I submitted a Pull Request to update MacPorts' Got to 0.122 here:

https://github.com/macports/macports-ports/pull/31141

GitHub Continuous Integration checks passed OK.

It's up to someone else with commit access to merge it!

#Got #GameOfTrees #MacPorts #VersionControl #OpenBSD #Git #Development #FreeSoftware #LibreSoftware



Show Original Post


1 ...88 89 90 91 92 93 94 95 96 97 98 ...347
UP