
2025/12/25
Some Commonly Used Git Commands
This article introduces some commonly used git commands.
Pulling code
Clone a specific branch
git clone -b drizzle https://github.com/RobinWM/shipany-template-one.git my-shipany-projectSyncing code
git clone https://github.com/RobinWM/shipany-template-one.git
git remote rm origin
git remote add upstream https://github.com/shipanyai/shipany-template-one.git
git remote add origin <your-repository-url>
git pull upstream mainProxy
git config --global --unset http.proxy
git config --global http.proxy http://127.0.0.1:7890Configuration
git config user.name "RobinWM"
git config user.email "v517649974769@gmail.com"Key generation
ssh-keygen -t ed25519 -C "v517649974769@gmail.com"Author
Categories
More Posts

PaymentStripe
Stripe Radar Rules Sharing
This article introduces the application scenarios and implementation details of Stripe Radar rules.

PaymentStripe
Enable WeChat Pay and Alipay in Stripe
This article explains how to enable WeChat Pay and Alipay in Stripe.

DokployDeployMaintenance
How to Build Images and Push to Dokploy Using GitHub Actions
This article introduces how to build images and push to dokploy using GitHub Actions.