git

Back Open Paginator
02.01.2026 21:24
2061 (@2061@links.bouncepaw.com)

git-pkgs: explore your dependency history

A git subcommand to explore the dependency history of your repositories.

#git




Show Original Post


02.01.2026 21:00
r (@r@fed.brid.gy)

Introducing gisthost.github.io | by Simon Willison buff.ly/SU3qzBn #github #git #gist #devtools #softwaredev

Introducing gisthost.github.io




Show Original Post


02.01.2026 18:43
ramrom (@ramrom@infosec.exchange)

Editing previous git commits on the CLI,

  1. Get the hash of the commit to be edited
    git log --oneline

  2. Stage and commit changes
    git add <files>
    git commit --fixup=<commit-to-edit-hash>
    This will create a special commit starting with fixup!

  3. 🪄 Make the change permanent
    git rebase --autosquash <parrent-(branch|commit)>

Since this is a rebase, choosing
a. parent-branch will add all commits done after the fork.
b. parent-commit without adding any new commit from the parent

In both cases, git log --oneline will help to find the right values.

Helpful? Let me know!

#devops #firstpost #tip #git #cli




Show Original Post


02.01.2026 08:00
WildaSoftware (@WildaSoftware@mastodon.social)

A na początek nowego roku artykuł o sztuczkach i to takich, które pozwolą w miarę bezboleśnie obsługiwać różne klucze SSH w różnych repozytoriach.

mtsz.pl/blog/2025-12-14-wszyst




Show Original Post


02.01.2026 05:02
unixbhaskar (@unixbhaskar@fosstodon.org)

FYI ...if you prefer so 😜

#linuxadmin #tool #git #opensource

eagain.net/articles/git-for-co




Show Original Post


02.01.2026 05:02
unixbhaskar (@unixbhaskar@mastodon.social)

FYI ...if you prefer so 😜

eagain.net/articles/git-for-co




Show Original Post


01.01.2026 22:19
devto_vn_bot (@devto_vn_bot@mastodon.maobui.com)

🤖 Tự động hóa Git trong VS Code với AI Commit chỉ bằng một phím tắt!

Nhờ kết hợp GitHub Copilot và Multi-command extension:
- Tự động staging
- AI tạo thông báo commit
- Commit & đồng bộ chỉ bằng CTRL+ALT+G
Không cần confirm thủ công sau thiết lập!

Lợi ích: Giảm quy trình 5 bước thành một thao tác. Cài đặt chi tiết trong bài viết.

#Git #VSCode #GitHubCopilot #Automation #Developer #TựĐộngHóa #LậpTrình #AI

dev.to/jankoweb/automating-git




Show Original Post


01.01.2026 21:47
dhry (@dhry@mastodon.social)

Just tried to clone a repo. Asks for username and password then says I can't use username and password to clone a repo on Mac.

Fucking piece of shit. I just read about generating an ssh key and using that and wibble de dee fwing fwang FUCK it. Giving up. I don't want to have to tiger balm my entire vertebra, sit in a tub of scalding water then spend three hours leaning forward to facilitate self-fellation just to CLONE A GOD DAMNED GIT REPO thanks.

(knocks 2026 off desk as he storms out)




Show Original Post


01.01.2026 20:19
devto_vn_bot (@devto_vn_bot@mastodon.maobui.com)

Lập trình viên mới? Git là kỹ năng bắt buộc! 🚀

Git giúp bạn:
✔️ Theo dõi lịch sử thay đổi code
✔️ Khôi phục phiên bản cũ nếu có lỗi
✔️ Làm việc nhóm không lo ghi đè code

Lệnh cơ bản cần biết:
› git init: Tạo kho lưu trữ
› git add: Chuẩn bị file cho commit
› git commit -m "mô tả": Lưu trạng thái code
› git status: Kiểm tra thay đổi

Thực hành ngay để thành thạo công cụ thiết yếu này! 💻

#Git #VersionControl #Coding #BeginnerDeveloper
#LậpTrình #QuảnLýPhiênBản #NhậpMôn #CôngCụDev

https://dev




Show Original Post


01.01.2026 19:40
notes (@notes@xn--ior.tw)
[個人 blog 分享] 企業級 Git 裸儲存庫實戰:氣隙環境的四層架構開發流程

👉 https://xn--jgy.tw/Uncategorized/git-bare-repo-enterprise-workflow-guide/

在企業環境中,基於資安考量,內外網嚴格隔離是常見的安全策略。開發者會需要在開發工作站安裝各種開發工具和套件,這些行為讓開發環境相對「危險」。而 Git 儲存庫則託管在受保護的內網伺服器上,兩者之間無法直接連線。在這種嚴格的網路隔離政策下,如何維持有效的版本控制和程式碼同步,成為實際的開發挑戰。

本文將分享一套經過實戰驗證的解決方案,透過 Git 裸儲存庫(Bare Repository)與 USB 隨身碟,在氣隙環境建立起符合資安要求的四層架構工作流程。核心概念是利用「物理隔離」來橋接內外網:外網開發機無法連接內網,只能透過 USB 隨身碟作為資料載體,由具有內網權限的中介機器負責最終推送。這個額外的中介層除了滿足資安政策要求,同時提供了一個重要的檢查點,讓變更在推送到內網儲存庫前,能經過最後一道人工驗證。 #Blog #Git


Show Original Post


01.01.2026 18:15
post (@post@programming.dev)

Git Rev News Edition 130 (December 31st, 2025)

programming.dev/post/43319874




Show Original Post


01.01.2026 17:29
svenjacobs (@svenjacobs@androiddev.social)

My year 2025 in #code

git-wrapped.com

#GitWrapped #YearInCode #Git #GitHub





Show Original Post


1 ...138 139 140 141 142 143 144 145 146 147 148 ...348
UP