SShortSingh.
Back to feed

Git Workflow Explained: From Init to Push for Version Control Beginners

0
·1 views

Git is a widely used version control system that helps software teams track and manage changes to source code over time. A Git repository is a designated folder that Git monitors for modifications, and it can be initialized using the 'git init' command. Developers use commands like 'git add' to stage files and 'git commit' to save changes as checkpoints in the project's history. After committing locally, 'git push' is used to upload changes to a remote repository. Used by over 70% of developers, Git tracks only the changes made in each commit rather than storing full file copies, making it efficient and scalable.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Keybound tool audits prompt cache isolation in multi-tenant LLM relays

A developer named Pedro Sordo Martínez has released Keybound, an open-source auditing tool designed to verify prompt cache isolation in multi-tenant LLM relay systems. The tool tests whether a relay correctly prevents one tenant from reading cache data written by another tenant sharing the same upstream credential. Keybound implements the defense contract defined in the KeyPooling paper (arXiv:2608.17485), which requires that a namespace derived from authenticated tenant identity be applied to every cache lookup and write. The tool runs formal test fixtures against a synthetic mock gateway — returning a FAIL verdict when namespaces collapse and a PASS when per-tenant isolation is enforced. The project achieves 90% overall test coverage, with 97–100% coverage on the core audit logic, and is available under the AGPL-3.0-or-later license on GitHub.

0
ProgrammingDEV Community ·

Vagrant and Ansible Still Viable for Dev VMs, Though Containers Now Dominate

A 2014 blog post on setting up development virtual machines using Vagrant and Ansible has been reposted to DEV Community with minor edits. Vagrant was once the standard tool for spinning up local dev VMs, allowing multi-machine environments to be created in seconds. Unlike provisioning tools such as Puppet or Ansible, Vagrant itself only manages the VM lifecycle and delegates configuration to external tools. The author notes that while most teams now prefer containers, the Vagrant-plus-Ansible workflow remains relevant for use cases requiring full VMs, such as kernel-level testing or OS-specific work. An example project, vagrant-lamp-ansible, is still available on GitHub for developers who want to try the setup.

0
ProgrammingDEV Community ·

DEV Community Writer Explains Switching Profile Photo to VTuber Character Shigure Ui

A developer and writer on DEV Community recently changed their profile picture to an image of Shigure Ui, a character from the VTuber world, prompting them to write a detailed personal post explaining the decision. The author connects the change to themes explored in earlier writings about poverty, creative struggle, and emotional hardship. Growing up without internet or a computer in a small village, they describe having built their skills entirely from scratch while facing repeated professional setbacks. The profile picture change is framed not as trivial but as a meaningful reflection of where they currently find joy and emotional grounding. The post is intended as an honest account of how unexpected sources of comfort, including animated characters, can carry genuine personal significance.

0
ProgrammingDEV Community ·

Custom New Relic Transaction Naming for eZ Publish via PHP Extension

A developer originally published in 2013 a solution for improving New Relic monitoring on eZ Publish PHP applications. By default, the New Relic PHP agent groups all eZ Publish transactions under '/index.php', making performance diagnosis difficult. The developer built an open-source extension called 'ezpublish-newrelic' that hooks into New Relic's PHP API to assign distinct, meaningful names to individual module and view transactions. The extension remains available on GitHub and can be installed via Composer from Packagist. Although New Relic's PHP agent has evolved since, the core approach of manually naming transactions instead of consolidating them into a single bucket remains a valid practice today.