chinese-git-workflow

Configures Git workflows, commit conventions, and CI pipelines for Chinese hosting platforms.

3|1|Updated May 29, 2026
One-click install
npx skills add https://github.com/mambo-wang/CodingHub --skill chinese-git-workflow-mambo-wang
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: chinese-git-workflow
Source: https://github.com/mambo-wang/CodingHub/tree/main/.qoder/skills/chinese-git-workflow
Command: npx skills add https://github.com/mambo-wang/CodingHub --skill chinese-git-workflow-mambo-wang

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams in China often struggle with unstable GitHub access, CI/CD setups copied from foreign platforms that do not fit local services, and inconsistent commit message conventions. This Skill provides a complete Git workflow adapted to domestic platforms and team habits. ## Core Features & Use Cases - Platform Configuration: Covers SSH/HTTPS/credential setup differences for Gitee, Coding.net, JiHu GitLab, and CNB, including mirror push to both Gitee and GitHub. - Workflow & Branching Standards: Provides trunk-based, Git Flow, and simplified dev/main models with branch naming rules and Chinese Conventional Commits message templates. - CI/CD Templates: Ready-to-adapt pipeline examples for Gitee Go, Coding CI (Jenkinsfile), JiHu GitLab CI, and CNB (.cnb.yml), plus a PR/MR description template. - Use Case: A team migrating from GitHub to Gitee can use this Skill to configure remotes, set up Gitee Go pipelines, and enforce a Chinese commit message standard in one pass. ## Quick Start Invoke /chinese-git-workflow and ask it to set up a Gitee remote with GitHub mirror push and a matching CI pipeline for your project.

Frequently Asked Questions about chinese-git-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I push to Gitee and GitHub at the same time?▼

Add multiple push URLs to the same remote using git remote set-url --add --push origin for both the Gitee and GitHub repository URLs. A single git push then mirrors commits to both platforms.

What is the difference between Gitee, Coding.net, JiHu GitLab, and CNB?▼

Gitee suits open source and small teams, Coding.net fits mid-to-large teams with full artifact management, JiHu GitLab targets enterprise private deployment, and CNB provides Docker-native pipelines via .cnb.yml. All offer fast domestic access and free private repositories.

Does CNB support SSH for Git remotes?▼

No, CNB only supports HTTPS remote URLs. Authentication uses the fixed username cnb with a personal access token generated in the platform's settings, typically stored via git config credential.helper store.

How do I write Chinese commit messages with Conventional Commits?▼

Use the format type(scope): description, with types like feat, fix, docs, refactor, and perf. Write the description in Chinese, keep it specific, and reference task IDs such as TAPD-12345 in the footer.

Why do Chinese filenames show as escaped characters in git status?▼

Git escapes non-ASCII filenames by default. Run git config --global core.quotepath false to display Chinese filenames correctly in status and diff output.

Which Git branching model should a small Chinese team use?▼

Small teams of two to eight people with automated tests should use trunk-based development with short-lived feature branches merged daily. Teams with fixed release cycles can adopt the simplified dev/main model where dev auto-deploys to a test environment.