Git save raw files between commits

327 Views Asked by At

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.

3

There are 3 best solutions below

4
On BEST ANSWER

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 the git diff-tree command?)

#!/bin/bash

commit=$1            # get the commit hash from the command line (the first argument)
dest='/tmp'          # path to your destination directory (change it to match your setup)

# Cleanup on the destination directory
rm -rf $dest
mkdir $dest

# Copy the modified files
for i in $(git diff-tree --no-commit-id --name-only -r $commit); do
  cp --parents $i $dest/
done
0
On

See git archive.

git diff-tree --no-commit-id --name-only -r $commit \
| xargs git archive -o changedfiles.tgz -- 

should do it.

0
On

use

git diff-tree --no-commit-id --name-only -r bd61ad98 | git archive --format zip --output "proj-diff.zip" master -0 

-0 arg is for uncompressed archive; i haven't tested it out but this should work