0


【git】 强制拉取远程代码并覆盖本地

error: Your local changes to the following files would be overwritten by merge:
worker/src/RTC/RTCP/FeedbackRtpTransport.cpp
Please commit your changes or stash them before you merge.
Aborting

如何使用远程覆盖本地

  • 要使用远程仓库的代码覆盖本地更改,你可以按照以下步骤操作:

丢弃本地更改(使用远程覆盖本地):如果你不需要保留本地的更改,可以使用以下命令来丢弃本地所有更改,强制从远程拉取代码覆盖本地。

git fetch --all
git reset --hard origin/<branch-name>

是你要同步的分支名,比如 main 或 master。

强制拉取远程代码并覆盖本地: 如果你确定本地的改动都不需要,可以直接强制拉取:

git pull origin <branch-name>--force
  • 注意:这会丢失你本地对这些文件所做的所有未提交的更改,请确保你不需要保留这些改动。
  • 通过这两种方法可以确保远程代码覆盖本地的所有内容。

我的实操

zhangbin@LAPTOP-Y9KP MINGW64 /d/XTRANS/soup/mediasoup_github-offical (v3)
$ git fetch --all

zhangbin@LAPTOP-Y9KP MINGW64 /d/XTRANS/soup/mediasoup_github-offical (v3)
$ git reset --hard origin/v3
HEAD is now at a82dba897 3.14.16

zhangbin@LAPTOP-Y9KP MINGW64 /d/XTRANS/soup/mediasoup_github-offical (v3)
$ git pull
Already up to date.

zhangbin@LAPTOP-Y9KP MINGW64 /d/XTRANS/soup/mediasoup_github-offical (v3)
$

标签: git

本文转载自: https://blog.csdn.net/commshare/article/details/143161104
版权归原作者 等风来不如迎风去 所有, 如有侵权,请联系我们删除。

“【git】 强制拉取远程代码并覆盖本地”的评论:

还没有评论