Tagged articles
467 articles
Page 5 of 5
Java Backend Technology
Java Backend Technology
Oct 16, 2018 · Fundamentals

Master Git: From Installation to Advanced Branch Management

This comprehensive guide walks you through installing Git on Windows, explains core concepts such as workspace, index, repository and remote, demonstrates common commands for creating, committing, branching, merging, stashing, and collaborating with GitHub, and shows how to resolve conflicts and revert changes.

Version Controlbranchingconflict resolution
0 likes · 21 min read
Master Git: From Installation to Advanced Branch Management
Java Captain
Java Captain
Oct 4, 2018 · Operations

Automated Git Shell Script for Cloning, Branch Creation, and Remote Push

This article introduces a shell script that automates the typical Git workflow of cloning a repository, creating a new development branch from master, pushing the branch to the remote server, and establishing upstream tracking, allowing developers to focus solely on code changes.

GitVersion Controlautomation
0 likes · 5 min read
Automated Git Shell Script for Cloning, Branch Creation, and Remote Push
DevOps
DevOps
Sep 25, 2018 · Backend Development

A Full-Scenario Git Branching Model for Large-Scale Dual-Mode Development and Its Practice in the Agricultural Bank Credit Management System (C3)

This article presents a comprehensive Git branching model designed for large-scale dual‑mode development, details naming conventions, granularity rules, code picking methods, shallow clone and sparse checkout techniques, and demonstrates its successful application in the Agricultural Bank's C3 credit management system while also announcing a related DevOps live event.

Branching ModelDevOpsGit
0 likes · 9 min read
A Full-Scenario Git Branching Model for Large-Scale Dual-Mode Development and Its Practice in the Agricultural Bank Credit Management System (C3)
21CTO
21CTO
Sep 23, 2018 · Fundamentals

Mastering Single-Release Git Strategy: Step-by-Step Guide for Teams

This article explains how development teams can use a single‑release Git workflow—creating release branches from master, managing feature branches, merging or rebasing, tagging, pull‑requests, and cleaning up branches—to streamline development and deployment.

GitSoftware DevelopmentVersion Control
0 likes · 6 min read
Mastering Single-Release Git Strategy: Step-by-Step Guide for Teams
DevOps
DevOps
Sep 14, 2018 · Databases

Optimizing TFS Database Storage: Managing Documents, Build Packages, and Test Artifacts

This article explains how to reduce TFS database growth by managing document, source code, build package, and test artifact storage, offering best‑practice recommendations, configuration tips, and SQL scripts for analyzing and cleaning up large data tables and optimizing repository structures.

Build ArtifactsDatabase OptimizationSQL Scripts
0 likes · 17 min read
Optimizing TFS Database Storage: Managing Documents, Build Packages, and Test Artifacts
Liangxu Linux
Liangxu Linux
Aug 21, 2018 · Fundamentals

Master Git Cherry-Pick: Selective Commit Transfer Made Easy

Learn how to use Git's cherry-pick command to selectively copy individual or ranges of commits from one branch to another, with step‑by‑step examples, command syntax, and tips for handling multiple commits and postponing automatic commits.

GitSoftware DevelopmentVersion Control
0 likes · 5 min read
Master Git Cherry-Pick: Selective Commit Transfer Made Easy
21CTO
21CTO
Aug 21, 2018 · Fundamentals

Master Git: Understanding Working Directory, Staging Area, and History

This article explains Git's three core areas—working directory, staging (index) area, and history—detailing how commands like git add, commit, reset, checkout, and revert manipulate these zones, with visual diagrams and practical examples for effective version control.

GitStaging AreaVersion Control
0 likes · 12 min read
Master Git: Understanding Working Directory, Staging Area, and History
21CTO
21CTO
Aug 12, 2018 · Fundamentals

Why Every Development Team Needs a VCS and How to Choose the Right One

This article explains the importance of version control systems for collaborative software development, outlines the differences between distributed and centralized VCS, offers best‑practice guidelines, and compares popular open‑source tools like Git, Mercurial, and SVN.

GitSCMSoftware Development
0 likes · 8 min read
Why Every Development Team Needs a VCS and How to Choose the Right One
Ops Development Stories
Ops Development Stories
Aug 3, 2018 · Fundamentals

Master Git: From Installation to Advanced Branch Management

This comprehensive guide walks you through installing Git, configuring user information, initializing repositories, tracking and committing changes, managing branches, handling remotes, using tags, rebasing, and creating command aliases, all illustrated with clear examples and screenshots.

GitRemote RepositoriesTags
0 likes · 44 min read
Master Git: From Installation to Advanced Branch Management
Big Data and Microservices
Big Data and Microservices
Jul 31, 2018 · Operations

Master Git: Essential Commands and Workflows Explained

This guide walks through Git's core commands—including add, commit, reset, checkout, diff, merge, cherry‑pick, and rebase—explaining how they move files among the working directory, index, and repository, how branches and HEAD behave, and what happens under the hood in the object database.

DevOpsGitVersion Control
0 likes · 10 min read
Master Git: Essential Commands and Workflows Explained
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Jul 11, 2018 · Fundamentals

Five Git States and Their Sequential Operations

This article explains Git’s four areas (working, staging, local repository, remote repository) and five file states (origin, modified/untracked, staged, committed, pushed), detailing step‑by‑step commands such as git add, commit, push, and how to revert changes using git reset, checkout, and clean.

GitRepositorySoftware Development
0 likes · 6 min read
Five Git States and Their Sequential Operations
Architecture Digest
Architecture Digest
Jul 8, 2018 · Fundamentals

Understanding Git’s Core Data Structures and Architecture

The article explains Git’s fundamental architecture, describing how trees, blobs, and commits are stored as objects identified by hashes, how version history forms a linked list, and how optimizations such as directory sharding and garbage collection fit into this design.

Data StructuresGitVersion Control
0 likes · 9 min read
Understanding Git’s Core Data Structures and Architecture
21CTO
21CTO
Jun 11, 2018 · Fundamentals

Why GitHub Dominates: 5 Key Reasons Developers Love It

This article explores why GitHub, the world’s largest open‑source code host with 85 million repositories and 28 million developers, remains indispensable by examining its strong community, massive code library, simple version control, extensive integrations, and secure cloud storage.

GitHubVersion Controlcloud storage
0 likes · 6 min read
Why GitHub Dominates: 5 Key Reasons Developers Love It
DevOps
DevOps
Apr 24, 2018 · Operations

Spring Project Agile Transformation: Integrating Physical Kanban with TFS for Process, Version, and Delivery Improvements

The Spring Project team adopted Scrum and a physical Kanban board, combined with TFS work items, to streamline requirement tracking, code‑story linkage, version control, and automated deployment, resulting in clearer process management, higher delivery quality, and improved team efficiency across fifteen iterations.

KanbanTFSVersion Control
0 likes · 8 min read
Spring Project Agile Transformation: Integrating Physical Kanban with TFS for Process, Version, and Delivery Improvements
ITPUB
ITPUB
Apr 24, 2018 · Fundamentals

12 Essential Git Tips to Supercharge Your Version Control

Discover twelve practical Git tricks—from configuring global and repository settings to using aliases, visualizing commit graphs, safe force‑pushes, and powerful add/checkout options—that can dramatically improve your workflow and efficiency.

GitVersion Controlaliases
0 likes · 14 min read
12 Essential Git Tips to Supercharge Your Version Control
DevOps
DevOps
Apr 15, 2018 · Fundamentals

Understanding Pull Requests: Concepts and Typical Workflow

This article explains what a pull request is, why it is essential for code quality and collaboration, and walks through the typical four‑step workflow—creating a branch, opening a pull request, updating it, and completing the merge—using Git and TFS/VSTS examples.

Code reviewCollaborationDevOps
0 likes · 13 min read
Understanding Pull Requests: Concepts and Typical Workflow
360 Quality & Efficiency
360 Quality & Efficiency
Mar 23, 2018 · Fundamentals

Understanding Git Merge Conflicts and How to Resolve Them

This article explains the mechanics of Git pull (fetch + merge), outlines common merge‑conflict scenarios such as modifying different files, overlapping changes, and renaming files, and provides step‑by‑step solutions to resolve these conflicts in collaborative development.

CollaborationGitMerge Conflict
0 likes · 5 min read
Understanding Git Merge Conflicts and How to Resolve Them
DevOps
DevOps
Jan 31, 2018 · Fundamentals

Understanding Git History and Branch Merges: A Practical Walkthrough

This article explains how Git records history using a graph of commits, demonstrates creating feature and hotfix branches, shows fast‑forward and merge operations with command‑line examples, and clarifies how branch pointers move during typical enterprise development workflows.

GitVersion Controlbranching
0 likes · 9 min read
Understanding Git History and Branch Merges: A Practical Walkthrough
DevOps
DevOps
Jan 21, 2018 · Fundamentals

Git Workflow: Branch Creation, Committing, and Pushing Changes

This article introduces the basic Git workflow for enterprise developers, covering branch creation, committing changes, and pushing branches to a central repository, with step-by-step command examples and explanations of staging, status, and branch management.

GitVersion Controlbranching
0 likes · 11 min read
Git Workflow: Branch Creation, Committing, and Pushing Changes
DevOps
DevOps
Jan 16, 2018 · Fundamentals

Introduction to Git Repository Structure and Configuration

This article provides a comprehensive overview of Git for enterprise developers, covering repository basics, the .git directory, configuration files like .gitattributes and .gitignore, the three‑level configuration system, and step‑by‑step instructions for creating and cloning repositories on Windows.

ConfigurationGitRepository
0 likes · 8 min read
Introduction to Git Repository Structure and Configuration
DevOps
DevOps
Jan 14, 2018 · Fundamentals

Setting Up Git for Windows and Enterprise Development (g4e) – Installation, Configuration, and Toolchain

This guide introduces the g4e series, explains why version control is essential, walks through installing Git for Windows, configuring user identity and enterprise credentials, and reviews popular Git GUI tools, Visual Studio integration, VS Code extensions, VSTS/TFS private servers, and the Cmder command‑line alternative.

DevOpsGitTortoiseGit
0 likes · 11 min read
Setting Up Git for Windows and Enterprise Development (g4e) – Installation, Configuration, and Toolchain
DevOps
DevOps
Jan 9, 2018 · Fundamentals

Git Basics for Enterprise Developers – Core Concepts and Advantages

This article introduces the fundamental concepts of Git for enterprise developers, covering its distributed version control model, core operations such as commits, branches, and file states, and highlighting its advantages like parallel development, faster releases, strong community support, and integration with modern tooling.

CollaborationDistributed SystemsGit
0 likes · 12 min read
Git Basics for Enterprise Developers – Core Concepts and Advantages
DevOps
DevOps
Jan 7, 2018 · Fundamentals

Git Enterprise Developer Tutorial – Fundamentals Part 1

This article introduces the fundamentals of using Git as a version‑control system for enterprise development, covering why VCS is needed, Git's advantages, installation, repository initialization, branching, history inspection, pull‑request workflow, and how Git supports unified workflows, collaboration, history preservation, and CI/CD integration.

CollaborationEnterprise DevelopmentGit
0 likes · 11 min read
Git Enterprise Developer Tutorial – Fundamentals Part 1
DevOps
DevOps
Jan 7, 2018 · Fundamentals

Enabling Git Debug Output in PowerShell

When Git commands produce hard‑to‑diagnose errors, you can activate detailed tracing in PowerShell by setting the environment variables GIT_TRACE and GIT_CURL_VERBOSE to 1, which makes Git output extensive operation details to help locate the problem.

GitPowerShellVersion Control
0 likes · 2 min read
Enabling Git Debug Output in PowerShell
DevOpsClub
DevOpsClub
Jan 3, 2018 · Fundamentals

Master Git for Enterprise Teams: A Complete 4‑Part Tutorial

This guide presents a comprehensive, four‑section tutorial that equips enterprise developers with essential Git knowledge—from basic concepts and setup to advanced workflows, branch strategies, and integration with CI/CD—addressing common challenges and improving large‑scale development efficiency.

Branch StrategyDevOpsGit
0 likes · 9 min read
Master Git for Enterprise Teams: A Complete 4‑Part Tutorial
21CTO
21CTO
Sep 19, 2017 · Fundamentals

Why Git Dominates Version Control: From Linus’s DIY System to Modern Workflows

This article traces the history of Linux's source‑code management, explains why Linus Torvalds created Git as a distributed version‑control system, compares it with centralized systems like CVS and SVN, and highlights Git’s key advantages and ecosystem.

Distributed SystemsGitVersion Control
0 likes · 10 min read
Why Git Dominates Version Control: From Linus’s DIY System to Modern Workflows
Programmer DD
Programmer DD
Aug 7, 2017 · Fundamentals

Mastering Gitflow: A Step‑by‑Step Guide to Structured Git Branching

Gitflow provides a disciplined branching model for teams, using dedicated master, develop, feature, release, and hotfix branches to manage development, releases, and maintenance, and this guide walks through its concepts, branch roles, and detailed command‑line steps with examples to implement the workflow effectively.

GitVersion Controlbranching
0 likes · 10 min read
Mastering Gitflow: A Step‑by‑Step Guide to Structured Git Branching
JavaScript
JavaScript
Jul 7, 2017 · Fundamentals

Master Essential Git Commands for Local Repositories and Remote Collaboration

This guide provides a comprehensive collection of Git commands covering repository initialization, user configuration, status checks, staging, committing, branching, checkout, merging, remote operations, tag management, diffing, stash handling, and repository maintenance for effective version control.

GitRepositoryVersion Control
0 likes · 12 min read
Master Essential Git Commands for Local Repositories and Remote Collaboration
ITPUB
ITPUB
Jun 24, 2017 · Operations

Master Essential SVN Commands for Linux: A Complete Cheat Sheet

This guide presents a thorough collection of Subversion (SVN) commands for Linux, covering checkout, add, commit, lock/unlock, update, status, delete, log, info, diff, merge, help, list, mkdir, revert, switch, resolve, cat, cleanup, import and related usage examples, helping users manage repositories efficiently.

SubversionVersion Controlcommand-line
0 likes · 11 min read
Master Essential SVN Commands for Linux: A Complete Cheat Sheet
21CTO
21CTO
Apr 9, 2017 · Fundamentals

Why Programming Languages Keep Evolving: 6 Trends Every Developer Should Know

The article outlines six major trends shaping modern programming—from industry standards and popular third‑party modules to modular programming, framework adoption, testing practices, cross‑platform development, and the rise of tooling, automation, and ecosystem awareness—highlighting why developers must stay current.

ToolingVersion Controlcontinuous integration
0 likes · 16 min read
Why Programming Languages Keep Evolving: 6 Trends Every Developer Should Know
DevOps
DevOps
Mar 15, 2017 · Operations

Pipeline as Code: Addressing CI/CD Pain Points with Version Control and DSLs

The article explains how treating CI/CD pipelines as code—managed via version control and domain‑specific languages—solves configuration drift, reproducibility, and documentation issues, and outlines practical steps and tool examples for implementing this DevOps practice.

DSLDevOpsJenkins
0 likes · 8 min read
Pipeline as Code: Addressing CI/CD Pain Points with Version Control and DSLs
System Architect Go
System Architect Go
Feb 8, 2017 · Fundamentals

Getting Started with Git and GitHub: Essential Commands and Workflow

This article introduces Git as a distributed version‑control system and GitHub as a hosting platform, explains why they are useful, and walks through core commands such as init, add, commit, branch, tag, and push to help developers manage code efficiently and collaborate effectively.

CollaborationGitGitHub
0 likes · 5 min read
Getting Started with Git and GitHub: Essential Commands and Workflow
ZhiKe AI
ZhiKe AI
Feb 6, 2017 · Fundamentals

Essential Git Commands: A Practical Guide

This article provides a step‑by‑step walkthrough of common Git operations—including repository initialization, staging, committing, viewing status, diffing, logging, reverting, remote configuration, branching, tagging, and .gitignore setup—illustrated with command examples and screenshots.

GitTaggingVersion Control
0 likes · 6 min read
Essential Git Commands: A Practical Guide
Architecture Digest
Architecture Digest
Dec 11, 2016 · Fundamentals

Comprehensive Git Guide: Installation, Configuration, Basic Operations, Branching, and Remote Management

This article provides a detailed tutorial on installing Git on various platforms, configuring user information and aliases, managing .gitignore files, performing core repository actions such as init, add, commit, diff, and status, as well as advanced branch, tag, and remote repository operations using the command line.

GitTaggingVersion Control
0 likes · 17 min read
Comprehensive Git Guide: Installation, Configuration, Basic Operations, Branching, and Remote Management
dbaplus Community
dbaplus Community
Oct 28, 2016 · Operations

Mastering Full‑Scale Configuration Management for Seamless Continuous Delivery

This article breaks down comprehensive configuration management—covering code and build artifact versioning, application settings, and environment provisioning—explaining why it is the cornerstone of continuous delivery and offering concrete branch strategies, Git practices, artifact handling, injection methods, and automation tools to achieve reliable, low‑risk software releases.

Branch StrategyConfiguration ManagementContinuous Delivery
0 likes · 26 min read
Mastering Full‑Scale Configuration Management for Seamless Continuous Delivery
Java Backend Technology
Java Backend Technology
Oct 14, 2016 · Backend Development

Essential Git Command Cheat Sheet for Developers

A comprehensive, English-language cheat sheet that explains Git terminology and provides ready-to-use command snippets for initializing repositories, configuring settings, managing files, committing changes, handling branches, tags, viewing history, synchronizing remotes, and undoing actions.

BranchGitVersion Control
0 likes · 13 min read
Essential Git Command Cheat Sheet for Developers
Architecture Digest
Architecture Digest
Oct 13, 2016 · Fundamentals

Core Concepts of Git: Theory, Architecture, and Workflow

This article provides a comprehensive theoretical overview of Git, covering version‑control fundamentals, the architecture of blobs, trees and commits, SHA‑1 hashing, references, branching, merging, rebasing, and best‑practice workflows for effective distributed source‑code management.

GitGit ObjectsVersion Control
0 likes · 16 min read
Core Concepts of Git: Theory, Architecture, and Workflow
Node Underground
Node Underground
Aug 26, 2016 · Backend Development

How to Inspect and Manage Your Node.js Module Dependencies Effectively

Modular design simplifies Node.js development but introduces uncertainty about third‑party modules, so understanding which packages you rely on, their usage, popularity, version status, and last update dates can boost confidence and maintainability of your codebase.

Node.jsVersion Controlmodule dependencies
0 likes · 2 min read
How to Inspect and Manage Your Node.js Module Dependencies Effectively
Huawei Cloud Developer Alliance
Huawei Cloud Developer Alliance
Aug 23, 2016 · Fundamentals

Why Git Beats SVN: Real‑World Scenarios Every Developer Should Know

The article explains the three main types of version control systems, contrasts centralized tools like SVN with distributed ones like Git, and illustrates through three developer scenarios how Git’s branching and conflict‑resolution features simplify collaboration, speed up workflows, and avoid common pitfalls.

Distributed SystemsGitVersion Control
0 likes · 5 min read
Why Git Beats SVN: Real‑World Scenarios Every Developer Should Know
Qunar Tech Salon
Qunar Tech Salon
Jul 14, 2016 · Operations

Google’s Monolithic Repository: The Piper System and Its Benefits and Challenges

Google’s engineers explain in an ACM Communications paper how their custom monolithic repository, managed by the Piper version‑control system built on Spanner, supports billions of files and lines of code, enabling trunk‑based development, rapid code visibility, and large‑scale refactoring, while also requiring substantial tooling investment and operational complexity.

Google PiperVersion Controllarge-scale codebase
0 likes · 12 min read
Google’s Monolithic Repository: The Piper System and Its Benefits and Challenges
DevOps
DevOps
Jul 8, 2016 · Fundamentals

Understanding Version Control Systems: From Manual Practices to Distributed VCS

This article explains the principles of version control systems, illustrating the evolution from manual file‑locking methods to modern distributed workflows with checkout, check‑in, merging, branching, and collaborative features exemplified by the custom Hit and HitHub platforms.

CollaborationDistributed SystemsGit
0 likes · 11 min read
Understanding Version Control Systems: From Manual Practices to Distributed VCS
DevOps
DevOps
Jun 20, 2016 · Fundamentals

A Guide to Popular Git GUI Clients and IDE Integrations

This article reviews several standalone Git GUI tools such as GitHub Desktop, SourceTree, and TortoiseGit, as well as IDE‑integrated Git support in Xcode, Eclipse, Visual Studio, and VS Code, highlighting their features, platform compatibility, and practical usage tips for developers.

GUIGitIDE integration
0 likes · 8 min read
A Guide to Popular Git GUI Clients and IDE Integrations
MaGe Linux Operations
MaGe Linux Operations
Jun 8, 2016 · Fundamentals

10 Essential Git Tricks to Supercharge Your Workflow

This guide walks you through ten powerful Git techniques—including auto‑completion, .gitignore usage, blame, log options, reflog, partial staging, interactive rebasing, stash, fsck, and cherry‑pick—to help you manage code efficiently, recover lost commits, and streamline your development process.

GitVersion Controlcode management
0 likes · 11 min read
10 Essential Git Tricks to Supercharge Your Workflow
21CTO
21CTO
Jan 6, 2016 · Fundamentals

Mastering Git Flow: Efficient Branching and Release Management

This article explains why teams should adopt Git, outlines its key advantages, discusses common version‑control challenges, and provides a detailed walkthrough of the Git Flow branching model—including production, develop, feature, release, and hotfix branches—plus practical command‑line examples and tool recommendations.

Branch ManagementGitGit Flow
0 likes · 12 min read
Mastering Git Flow: Efficient Branching and Release Management
DevOps
DevOps
Dec 14, 2015 · Operations

Migrating from TFVC to Git While Preserving History

This article explains why many teams still use TFVC, compares its centralized features with Git's distributed advantages, and provides a step‑by‑step TFVC‑to‑Git migration procedure that retains full commit history and offers guidance on choosing the right repository strategy.

DevOpsGitTFVC
0 likes · 6 min read
Migrating from TFVC to Git While Preserving History
DevOps
DevOps
Dec 1, 2015 · Backend Development

Team Foundation Server 2015 Update 1 – New Features and Improvements

Team Foundation Server 2015 Update 1 introduces a range of enhancements—including dual Git/TFVC support, improved web version‑control UI, new Kanban board fields, integrated SonarQube analysis, multi‑selection in backlogs, customizable dashboards, advanced pull‑request features, and Azure resource‑group deployment—providing a richer ALM experience.

AzureDevOpsTFS
0 likes · 16 min read
Team Foundation Server 2015 Update 1 – New Features and Improvements
ITPUB
ITPUB
Nov 27, 2015 · Fundamentals

7 Essential Git Tricks to Undo Mistakes and Recover Your Code

This guide presents seven practical Git command‑line techniques—including amending commit messages, resetting staged changes, reverting commits, checking out previous revisions, undoing merges, cleaning untracked files, and deleting branches—to help developers safely recover from common version‑control errors.

BranchGitUNDO
0 likes · 8 min read
7 Essential Git Tricks to Undo Mistakes and Recover Your Code
Qunar Tech Salon
Qunar Tech Salon
Oct 8, 2015 · Operations

Google’s 2‑Billion‑Line Codebase and the Piper Version‑Control System

The article examines Google’s massive 2 billion‑line code repository, compares its size to Windows, explains how the single‑repo approach and the Piper version‑control system enable thousands of engineers to collaborate across data centers, and discusses the broader impact on software engineering practices.

Code RepositoryGooglePiper
0 likes · 7 min read
Google’s 2‑Billion‑Line Codebase and the Piper Version‑Control System
21CTO
21CTO
Oct 6, 2015 · Fundamentals

How to Tame Legacy Code: Proven Strategies for Effective Cleanup

This guide walks you through practical steps for assessing, testing, version‑controlling, incrementally refactoring, and simplifying messy legacy code so you can safely improve maintainability without introducing new bugs.

Legacy CodeVersion Controlcode cleanup
0 likes · 14 min read
How to Tame Legacy Code: Proven Strategies for Effective Cleanup
MaGe Linux Operations
MaGe Linux Operations
Jun 29, 2015 · Fundamentals

Three Essential Git Practices Every Developer Should Follow

This article explains why version control is indispensable for software projects and offers three practical Git recommendations—track all artifacts, commit frequently with appropriate granularity, and write clear commit messages—to improve collaboration, maintainability, and deployment across development environments.

GitSoftware DevelopmentVersion Control
0 likes · 6 min read
Three Essential Git Practices Every Developer Should Follow
MaGe Linux Operations
MaGe Linux Operations
Jun 26, 2015 · Fundamentals

Master Git Undo: Revert, Reset, Rebase, and More

This guide explains common Git undo scenarios—reverting public commits, amending messages, discarding local changes, resetting history, using reflog, branching tricks, interactive rebasing, and stopping file tracking—providing clear commands, underlying principles, and practical tips for safely managing version control mistakes.

GitUNDOVersion Control
0 likes · 15 min read
Master Git Undo: Revert, Reset, Rebase, and More
Qunar Tech Salon
Qunar Tech Salon
Jun 16, 2015 · Fundamentals

Git Version Control: Concepts, Commands, and Workflows

This article provides a comprehensive introduction to Git version control, covering its core concepts, key features, essential commands, various workflows such as Centralized, Feature Branch, Gitflow, and Forking, and practical tips for collaboration and history management.

CollaborationGitVersion Control
0 likes · 10 min read
Git Version Control: Concepts, Commands, and Workflows
Baidu Tech Salon
Baidu Tech Salon
Dec 22, 2014 · Fundamentals

From Onepay to Git: How Open Source Transforms Development

The author shares the story of launching the Onepay open‑source tip button on GitHub, explains core Git concepts such as distributed repositories, branching and forking, and reflects on why open‑source collaboration outweighs closed‑source models for technological progress.

GitGitHubOnepay
0 likes · 6 min read
From Onepay to Git: How Open Source Transforms Development
Baidu Tech Salon
Baidu Tech Salon
Jul 23, 2014 · Fundamentals

Guidelines for Refactoring and Cleaning Up Legacy Code

When inheriting tangled legacy code, first decide if you’re responsible and willing to invest, then establish comprehensive tests, use version control, make incremental changes, separate cleaning from bug fixing, remove dead code and comments, avoid mutable shared state, and eliminate unnecessary complexity to improve maintainability.

Code RefactoringLegacy CodeVersion Control
0 likes · 14 min read
Guidelines for Refactoring and Cleaning Up Legacy Code
MaGe Linux Operations
MaGe Linux Operations
Jun 28, 2014 · Fundamentals

Master GitHub: 10 Hidden Tricks to Boost Your Workflow

Discover practical GitHub shortcuts—including diff whitespace ignoring, author commit filtering, branch comparison URLs, Gist embedding, short URL creation, line highlighting, quick quoting, task lists, and diff/patch retrieval—to streamline your development workflow and save time.

GitHubTipsVersion Control
0 likes · 6 min read
Master GitHub: 10 Hidden Tricks to Boost Your Workflow