先从远程仓库拉新代码

1
git fetch

合并分支改动

1
git merge origin develop --no-ff

下载远程仓库的更新

1
git pull

查看本地修改了哪些文件

1
git status -s

添加文件到暂存区

1
git add file1 file2 file3

写入提交日志

1
git commit -m "这是一段日志" -a

提交到远程仓库

1
git push -f origin main

© 2025 hywing 使用 Stellar 创建
总访问 113701 次 | 本页访问 326