gitFocePushRemote.bat 154 B

12345678
  1. @echo off
  2. setlocal
  3. :: 假设你已经处于正确的Git仓库目录中
  4. :: 添加所有更改到暂存区
  5. git push -f --set-upstream origin master:master
  6. pause