Products
GG网络技术分享 2025-11-13 02:06 1
根据您给的文档内容,
bash
git config --global user.name "yourname"
git config --global user.email "youremail"
bash
git config --global color.ui auto
git config --global core.ignorecase false
git config --global core.filemode false
git config --global core.compression zlib
terminal.integrated.shell.windows 以用 Git Bash。bash
git init
bash
git status
bash
git add filename
bash
git commit -m "geng新鲜说明"
bash
git push
bash
git pull
bash
git branch branchname
bash
git checkout branchname
bash
git merge branchname
bash
git clone https://github.com/.../your-repo.git
bash
git remote add origin https://github.com/.../your-repo.git
bash
git push -u origin main

Demand feedback