#gitignore

2026-03-09

Гит в Телеграм?

На своем тг-канале я предлагаю подписчикам выбор, какую бредовую идею запилить следующей. На этот раз подписчики выбрали новый челлендж: сделать Git в Telegram. Чтобы можно было через бота инитить проекты, пушить файлы, коммитить — и всё это в публичном канале с тредами. С практической точки зрения этот проект на хуй не нужен. Есть гитхаб, есть гитлаб, есть куча нормальных инструментов. Но как эксперимент — почему бы и нет? Чисто посмотреть, можно ли заставить Telegram работать как VCS. Я тогда подумал: «Ну, бот на aiogram, база данных, пара команд — делов то))» Словари, датаклассы и прочая е*атория Когда я только начинал, первая мысль была: «Положу всё в JSON, на кой мне база данных?» Ну серьёзно, проектов мало, пользователей немного, файлы текстовые че заморачитватся. Подергал JSON туда-сюда пару дней и понял: не варик. Во-первых, конкурентный доступ. Два юзера одновременно коммитят — один из них перезаписывает файл другого. Во-вторых, целостность данных. Если бот упал в середине записи — JSON остаётся в невалидном состоянии. В-третьих, версионность. Хранить историю изменений в JSON — это просто перенести проблему из кода в структуру файла. Короче, JSON — для конфигов, а не для данных, которые меняются каждую секунду. Выбор пал на SQLite. Почему:

habr.com/ru/articles/1008202/

#Telegram_бот #Git #Python #aiogram #SQLite #git_в_telegram #gitignore

Orhun Parmaksız 👾orhun@fosstodon.org
2026-02-22

Found a .gitignore helper for the terminal! 🔥

🌀 **autogitignore** — A TUI for searching, previewing & generating .gitignore files

💯 Fuzzy search, multi-template selection, offline cache & safe writes with backup

🦀 Written in Rust & built with @ratatui_rs

⭐ GitHub: github.com/Bilal-AKAG/autogiti

#rustlang #ratatui #tui #git #gitignore #cli #devtools #opensource

2026-02-08

Als #Entwickler arbeitet man ja meist in Repositories und nicht alle #Dateien in diesen Verzeichnissen sollen oder dürfen in das #Repository rein (Credentials, Notizen, KI-Dateien).

Und manche von diesen Dateien will man aber dennoch archiviert oder versioniert haben.

Ich glaube, ich hab dafür eine richtig gute Lösung gefunden, die ich die nächsten Tage ausgiebig testen und danach veröffentlichen werde

#git #gitignore #projekt

Layar Kosongfrijal
2026-01-05

Gunakan template .gitignore standar ini untuk project Node.js agar folder seperti node_modules, .npm-cache, file log, dan .env tidak ikut ter-commit ke Git.

dalam.web.id/artikel/gitignore

Kerrick Long (blog)kerrick@kerrick.blog
2025-12-24
adlerweb // BitBasteleiadlerweb@social.adlerweb.info
2025-10-25

TIL: gitignore.io ist unmaintained. Die Firma, die das aufgekauft(?) hat, hat große Teile der Quellcodes auf github gelöscht und die Templates werden wohl nicht mehr Aktualisiert. Gibt wohl Versuche ne Alternative zu schaffen, z.B. donotcommit.com, sehen bisher aber auch eher unfertig aus :/
#git #github #gitignore

dazfuller :rickwhoah:dazfuller@mstdn.social
2025-08-30

I was getting wound up yesterday as I wanted to create a gitignore file and I couldn't be bothered to leave the terminal. So I created Snub (it's like ignoring, but with attitude) to scratch an itch.

The code is up on codeberg along with a first release. There's a few things I want to add to it still, but thought I'd share in case it's useful for anyone.

#git #gitignore #golang #cli

codeberg.org/dazfuller/snub

2025-04-28

.gitignore dosyası, Git sürüm kontrol sistemlerinde Git'in göz ardı etmesi gereken kasıtlı olarak izlenmemiş dosyaları belirtmek için kullanılır.

gitignore.ahmetcadirci.com/ #gitignore #ahmetcadirci #indieweb

2025-02-28

Харденинг GitLab: хитрость лисы в защите кода организации

Привет, Хабр! Я Антон Ерёмин, ведущий инженер дирекции инфраструктурных проектов Positive Technologies. Сегодня на примере харденинга реальных сервисов продолжаем рассказывать о нашей методологии ХардкорИТ — подходе к определению времени атаки и вероятных маршрутов хакеров. В прошлый раз мы проводили харденинг инфраструктуры Microsoft Exchange, затрудняя возможность ее атаки, разбирались в тонкостях защиты zVirt. Теперь настало время рассказать про харденинг GitLab.

habr.com/ru/companies/pt/artic

#gitlab #безопасность #cybersecurity #devops #devsecops #gitignore #gitconfig #ci #cd

Kevin Karhan :verified:kkarhan@infosec.space
2024-12-08

@ryanc add the file used to store it into .gitignore is propably not an option?

Maybe you can setup a build script that merges that secrets.list into a final build file and exclude that as well?

I mean, I did such seperation and build scripting in some cases a while ago...

#git #ESP8266 #Secrets #GitSecrets #InfoSec #Firmware #Compiling #Toolchain #gitignore

Orhun Parmaksız 👾orhun@fosstodon.org
2024-10-25

Today I found a TUI that helps with .gitignore files! 🔥

🧩 **gitnr**: Create .gitignore files using one or more templates.

🚀 Search and select templates & filter out duplicate lines.

🦀 Written in Rust & built with @ratatui_rs

⭐ GitHub: github.com/reemus-dev/gitnr

#rustlang #ratatui #tui #git #gitignore #templates #generator #commandline #terminal #tool

TIL: you can ignore files in your git repo without adding them to `.gitignore`

You can use `.git/info/exclude‘ instead.

So now you can ignore files locally, without the need to commit changes to gitignore.

#til #git #gitignore

2024-10-02

Someone made a PR to add .DS_Store to the .gitignore file in the Linux kernel repository.​​​​​​​​​​​​​​​​

Anyway best tip 🤯
#git #gitignore #linux #macos

github.com/torvalds/linux/pull

2024-09-08

~carnotweat/droid-tmpl:
#zsh+ #vterm intergration without posimacs & gitignore_global.nix - sourcehut git
#emacs #NixOnDroid #gitignore
git.sr.ht/~carnotweat/droid-tm

2024-07-16

Как работать с Git и Gitflow: разбираемся на примерах

Привет, Хабр! Меня зовут Николай Пискунов, я руководитель направления Big Data и в блоге

habr.com/ru/companies/beeline_

#git #gitflow #разработка #gitignore

2024-06-12

.gitignore dosyası, Git sürüm kontrol sistemlerinde Git'in göz ardı etmesi gereken kasıtlı olarak izlenmemiş dosyaları belirtmek için kullanılır. gitignore.ahmetcadirci.com #git #gitignore

Fossery Tech :debian: :gnome:fosserytech@social.linux.pizza
2024-05-17

POV when you forget to add a folder to .gitignore, and add it later when folder already exists

#Git #Gitignore #VC #VersionControl #Programming #ProgrammingMeme #ProgrammingMemes #FosseryTech

Me: In the project folder
Git: In the project folder
Me: there's a .gitignore file
Git: there's a .gitignore file
Me: it contains the line: __pycache__/
Git: it contains the line: __pycache__/
Me: so you have to ignore the __pycache__ folder
Git: so I track the changes of __pycache__ folder
Tommi 🤯tommi@pan.rent
2024-05-13

Hey #Eleventy tinkerers!

I have a git submodule that I am adding inside the repository of my website, but I want it to be ignored, except for its README.md.

I have tried two different approaches. In both cases I am able to exclude the git submodule, but I can’t find a way to include the README and use it as a regular template.

Option 1: using .eleventyignore

inputdir/submodule
!inputdir/submodule/README.md

Option 2: using .eleventy.js

module.exports = function (eleventyConfig) {
eleventyConfig.ignores.add('inputdir/submodule');
eleventyConfig.ignores.add('inputdir/submodule/README.md'); // added it first to be sure
eleventyConfig.ignores.delete('inputdir/submodule/README.md');
};

Do you have any suggestions to fix this? The ignore section in Eleventy’s documentation is not helping much…

Thanks a lot!

#11ty #help #WebDev #JavaScript #gitignore

cc: @eleventy @

(cross-posted on Discord and on GitHub Discussions

arnoldmelmarnoldmelm
2024-04-06


Genial am Hack ist die Ruhe und Gelassenheit bei der Vorbereitung von 2021 bis 2024

Genial ist der Plan einer Supply Chain Attack

Genial ist das Verstecken des Schadcodes in 2 Testfiles, die a) harmlos aussehen und die b) im "unsichtbaren" versteckt waren

Genial ist, eine so sichere Software wie indirekt anzugreifen (vgl Supply Chain Attack), die weltweit von fast allen Servern genutzt wird

Genial ist, dass die quasi ebenso sicher ist durch

Client Info

Server: https://mastodon.social
Version: 2025.07
Repository: https://github.com/cyevgeniy/lmst