GIT-如何从另一个分支获取一个文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GIT-如何从另一个分支获取一个文件相关的知识,希望对你有一定的参考价值。

I am using git and working on master branch. This branch has a file called app.js .

I have an experiment branch in which I made a bunch of changes and tons of commit. Now I want to bring all the changes done only to app.js from experiment to master branch.
  1. git show experiment:path/to/app.js
  2.  
  3. git show experiment:path/to/app.js > path/to/app.js /* In order to copy the file of expermient branch to our current branch */

以上是关于GIT-如何从另一个分支获取一个文件的主要内容,如果未能解决你的问题,请参考以下文章

如何从远程仓库中的 master 删除 GIT 分支并从另一个分支启动新分支?

如何使用 Git / IntelliJ 将整个文件从一个分支移动/复制到另一个分支? [复制]

text [GiT]完全从另一个分支替换git中的master分支

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

如何删除 Git 仓库中的历史提交记录