Git-提交本地修改到远程

pmna / 2025-02-21 / 原文

提交修改到暂存区

git add .

显示git add 提交内容:

git status

创建提交的名字

git commit -m "feat: 增加域名字库管理" --no-verify

拉取最新

git pull origin 远程分支名字

上传

git push --set-upstream origin 本地分支名字