Comprehensive Guide to Gitee Repository Management and Git Workflows
Initial Repository Setup
To begin using Gitee, you must first establish a connection between a local project and a remote repository. Start by logging into your Gitee account and clicking the "New Repository" button in the top right corner. Enter a name for your repository, optionally add a description, and confirm the creation.
Once ...
Posted on Fri, 24 Jul 2026 17:10:50 +0000 by niesom
Core Git Operations and Integrating Gitee within IntelliJ IDEA
Setting Up Your Identity
Before making any commits, configure your username and email. This step is mandatory once per Git installation; lacking it will cause commit failures.
git config --global user.name "your name"
git config --global user.email "your@email.com"
Starting a Local Repository
Navigate to your project folder ...
Posted on Sun, 12 Jul 2026 17:12:22 +0000 by milo_pantig
Implementing Continuous Integration with Gitee, Git, Ant, and Jenkins
Testing Shifts and Continuous Integration
Modern software development practices involve testing early in the lifecycle (shift-left) and extending testing into production (shift-right). Continuous Integration (CI) is a core DevOps practice where developers frequently merge code changes into a central repository. Automated builds and tests run on ...
Posted on Mon, 15 Jun 2026 17:36:55 +0000 by Radon3k
Essential Git Operations and Strategies for Remote Repository Management
Core Identity and Global Configuration
Establishing identity is the first step in version control. Use the following commands to configure your global profile or adjust settings for a specific local project.
# Set global user profile
git config --global user.name "developer_name"
git config --global user.email "developer@example. ...
Posted on Fri, 08 May 2026 20:53:59 +0000 by 938660