writing.exchange is one of the many independent Mastodon servers you can use to participate in the fediverse.
A small, intentional community for poets, authors, and every kind of writer.

Administered by:

Server stats:

333
active users

#git

37 posts37 participants3 posts today

I cleaned up several of my unused GitLab repositories in preparation for a partial move to Codeberg.

I am still unsure about some of the older, archived projects. Should I move them to another Git service? Or download and stick it on an external hard drive?

(FYI, this is me questioning myself; no advice is needed.)

Replied in thread

@thomas Nutze gerade mal die Wartezeit beim Frittenfön und zu faul auf englisch zu schreiben.

Mein Blog ist mit #hugo gemacht, was ja auch #markdown habe möchte.
Ich nutze da seit längerem schon Visual Studio Code #vscode. Das hat einen Preview und kann gleich noch #git. Ob es für z. B. Mairmaid-Markdown nativ unterstützt oder ich nen Plugin installiert habe, weiß ich gerade nicht auswendig. Für toml kann ich ein Plugin empfehlen. (1/3)

How should #git pull requests work in a post #GitHub world?

It is kind of ironic that git enhanced the centralization of FOSS and it is nice to see a push away from GitHub. But how will pull requests work?

Will I have to maintain forks at 17 different Gitea/GitLab/Forgejo instances? I don't want to do that.

I found the AGit workflow inspired by Gerrit: forgejo.org/docs/latest/user/a

That sounds nice. No more forks, just a clone. No more API or website on top of git, just a push to a special ref.

AGit Workflow Usage | Forgejo – Beyond coding. We forge.
forgejo.orgAGit Workflow Usage | Forgejo – Beyond coding. We forge.

#git

i somehow know how to do this manually (editing files), but what is canonical way of re-applying a commit, that was reverted?

So:

* commit A
* revert A
... other development ...
* do commit A in the same way as above

Managed to get unit tests working in a pre-commit hook today - no more commits unless they pass the tests! Although every developer has to setup the hook manually because you can't easily put hooks into Git itself (there are hacky ways around this, e.g. by using post-install-cmd in Composer).

Nearly everything I work on is bespoke and legacy, so getting tests setup is a lot harder than with a new or modern project based on a framework.

deno-task-hooks: Git 훅을 Deno 태스크로 쉽게 관리하기

hackers.pub/@hongminhee/2025/d

Hackers' Pub · deno-task-hooks: Git 훅을 Deno 태스크로 쉽게 관리하기안녕하세요! 오늘은 제가 개발한 deno-task-hooks 패키지를 소개해 드리려고 합니다. 이 도구는 Deno 태스크를 Git 훅으로 사용할 수 있게 해주는 간단하면서도 유용한 패키지입니다.어떤 문제를 해결하나요? Git을 사용하는 개발 팀에서는 코드 품질 유지를 위해 커밋이나 푸시 전에 린트, 테스트 등의 검증 작업을 실행하는 것이 일반적입니다. 이러한 작업은 Git 훅을 통해 자동화할 수 있지만, 기존 방식에는 몇 가지 문제가 있었습니다:Git 훅 스크립트를 팀원들과 공유하기 어려움 (.git 디렉토리는 보통 버전 관리에서 제외됨)각 개발자가 로컬에서 훅을 직접 설정해야 하는 번거로움훅 스크립트의 일관성 유지가 어려움<deno-task-hooks는 이러한 문제를 해결하기 위해 Deno의 태스크 러너를 활용합니다. Deno 태스크는 deno.json 파일에 정의되어 버전 관리가 가능하므로, 팀 전체가 동일한 Git 훅을 쉽게 공유할 수 있습니다.어떻게 작동하나요? deno-task-hooks의 작동 방식은 간단합니다:deno.json 파일에 Git 훅으로 사용할 Deno 태스크를 정의합니다.hooks:install 태스크를 실행하면, 정의된 태스크들이 자동으로 .git/hooks/ 디렉토리에 설치됩니다.이후 Git 작업 시 해당 훅이 트리거되면 연결된 Deno 태스크가 실행됩니다.<설치 및 사용 방법 1. hooks:install 태스크 추가하기 먼저 deno.json 파일에 hooks:install 태스크를 추가합니다:{ "tasks": { "hooks:install": "deno run --allow-read=deno.json,.git/hooks/ --allow-write=.git/hooks/ jsr:@hongminhee/deno-task-hooks" }}<2. Git 훅 정의하기 Git 훅은 hooks: 접두사 다음에 훅 이름(케밥 케이스)을 붙여 정의합니다. 예를 들어, pre-commit 훅을 정의하려면:{ "tasks": { "hooks:pre-commit": "deno check *.ts && deno lint" }}<3. 훅 설치하기 다음 명령어를 실행하여 정의된 훅을 설치합니다:deno task hooks:install<이제 Git 커밋을 실행할 때마다 pre-commit 훅이 자동으로 실행되어 TypeScript 파일을 검사하고 린트 검사를 수행합니다.지원되는 Git 훅 종류 deno-task-hooks는 다음과 같은 모든 Git 훅 타입을 지원합니다:applypatch-msgcommit-msgfsmonitor-watchmanpost-updatepre-applypatchpre-commitpre-merge-commitpre-pushpre-rebasepre-receiveprepare-commit-msgpush-to-checkoutsendemail-validateupdate<이점 deno-task-hooks를 사용하면 다음과 같은 이점이 있습니다:간편한 공유: Git 훅을 deno.json 파일에 정의하여 팀 전체가 동일한 훅을 사용할 수 있습니다.설정 용이성: 새 팀원은 저장소를 클론한 후 한 번의 명령어로 모든 훅을 설치할 수 있습니다.유지 관리 용이성: 훅 스크립트를 중앙에서 관리하므로 변경 사항을 쉽게 추적하고 적용할 수 있습니다.Deno의 안전성: Deno의 권한 모델을 활용하여 훅 스크립트의 보안을 강화할 수 있습니다.<마치며 deno-task-hooks는 작은 패키지이지만, Git과 Deno를 함께 사용하는 팀의 개발 경험을 크게 향상시킬 수 있습니다. 코드 품질 유지와 개발 워크플로우 자동화를 위해 한번 사용해 보세요! 패키지는 JSR에서 다운로드할 수 있으며, GitHub에서 소스 코드를 확인할 수 있습니다. 피드백과 기여는 언제나 환영합니다! 😊

alguien quiere ser mi colega de #git ? #python

estoy trabajando en una solucion para importar contenido de #youtube a #peertube

No es nada revolucionario... estoy aprendiendo :]
pero trato de hacerlo de la forma mas "profesional" posible.

tengo changelog:
codeberg.org/audricd/yt_2_pt/w

requisitos:
codeberg.org/audricd/yt_2_pt/w

kanban, con desarrollo / bugs:
codeberg.org/audricd/yt_2_pt/p

o sea que es bastante facil de incorporarse. aparte que el responsable (yo) es super majo, pese la apariencias

@kyva_dev @dotoscat @trankten @sam

se agradece #boost

Summary card of repository audricd/yt_2_pt
Codeberg.orgChangelogYoutube to Peertube migration tool

If I have a #codeberg account set up, with a verified #ssh key on my account and the corresponding public and private keys in `~/.ssh/`, is there a way that I can make it so that it doesn't ask me for my keyphrase every time I push? I'm sure VSCode could do this, but since I've switched to #Helix, which doesn't have git built-in I've been manually doing the git stuff.
My knowledge of #cryptography and #git are well and truly at the 'barely enough to get myself into trouble' level.
#AskFedi