I patted myself on the back for learning to use git's merge command, something I was afraid to use before. But after a day or two I realized one of my code branches was messed up. It was probably due to a simple mistake on my part -- due to working on it when I was tired. But the great part about git is I could get back to a point where everything worked and I was able to fix the branch. Without git, days of work would have been lost.
Moved the development area from my ansible repo to it's own development branch now.
Way cleaner then having things that are not finished yet in the master branch.
Should've done that from the beginning...
#codeberg #git #branch #development #ansible #automation #coding #yml #playbook #ansibleplaybook #development
Git blame shows Claude coauthored the code, dead giveaway there today.
Another Weekly Brain Dump is up!
- Switching up my #git plugin for #Neovim
- More #Hanami learning
- More #GameDev on Jumpy Alien
- Some really cool links
https://sean.taylormadetech.dev/2026/02/19/weekly-brain-dump-10.html
#WeeklyBrainDump #Blog #programming
Added the ability to click and drag the central divider to resize panes in split diff view. While dragging, the central divider brightens and there's a little indicator showing the size of each pane. It's especially fun with wrapping enabled :)
Next step is to add a means of doing this with the keyboard!
(thanks @davidbrochart for the suggestion!)
#terminal #tui #git #github #cli
15+ years later, Microsoft morged my diagram
https://sh.itjust.works/post/55539534
Does anyone know a better strategy to prevent your local main branch from getting outdated than
```
git branch -d main
mkdir .git/refs/heads/main/
touch .git/refs/heads/main/.no_checkout
```
[BLOG] Git subtrees: subrepos the simple way #Git https://cylab.be/blog/484/git-subtrees-subrepos-the-simple-way
Adding AI for code generation is easy.
The real edge comes when you also upgrade how you manage branches, review changes, resolve conflicts, and keep a clean #Git history.
That’s exactly where SmartGit shines — giving you professional visual control so you can focus on judgment, not just execution.
Are you rethinking your full dev workflow in 2026, or just bolting on new tools?
What’s one change you’ve made to your Git process lately? 👇
#SmartGit #DeveloperProductivity #AI #DevTools

GitLab backs 99.9% availability with service credits for Ultimate customers
https://toast.ooo/post/12337405
As time is ticking I noticed that I haven't got far in this months project (implementation of Wiki Pages in most of my Codeberg Repos)...
I'm not too sure how much time I can/will invest in it this week, perhaps at the weekend I can do something but my goal still stands.
Next week I'll be able to focus much more on it, so I'll probably be able to finish it.
I had enough time to be much further till now but Documentation isn't really the most fun part about a Sysadmins life...
#documentation #wiki #codeberg #git #project #goal #sysadmin
RIL: there is the shared .gitignore, there is the private global ~/.gitignore, but then there’s also .git/info/exclude which is private and local <3 #Git