使用主分支中的同一文件覆盖当前分支中的单个文件?

假设我有两个分支 - masterredesign 。 我将如何去重写我的重新设计分支中的文件default.aspx.cs与来自master的一个?

我发现这个问题,但它似乎回头如何将文件恢复到它在同一分支中的以前的版本。 我也考虑过使用merge ,但我不想合并,我想覆盖。 建议?


git checkout master path/to/default.aspx.cs

在做这件事之前,你可能必须: git checkout redesign

所以,只需将git checkout FROM_BRANCH_NAME path/to/file

链接地址: http://www.djcxy.com/p/50827.html

上一篇: Overwrite single file in my current branch with the same file in the master branch?

下一篇: How does Git solve the merging problem?