I wanna save/export the files different between two selected commits. The following command show me the modified files...
$ git diff-tree --no-commit-id --name-only -r bd61ad98
index.html
javascript/application.js
javascript/ie6.js
but there is a way to export them, preserving the file structure? I need save only the modified files in web server instead of upload the whole project.
This is just the seed for a small shell script (save it in a file and make the file executable). It is not a complete script. You need to check if
$1
is provided in the command line and abort with an error message otherwise (or the rest of the script will fail with misleading error messages). It needs to work no matter where it is located and from where it is called (it works now only if your current directory is the project directory). It needs to deal with deleted files somehow (is they returned by thegit diff-tree
command?)