Hi all, I did the following: edited did commit 1 edited did commit 2 edited did commit 3 Now I want to patch the changes between 2 and 3 onto 1, i.e. have commit 3 but with the changes from commit 2 removed. I created a branch where I reset it to commit 1 and then tried to apply the diff between 3 and 2. The patch however won't patch certain files. It contains the excerpt below, for example, so it should be patching directory.c but it isn't. The command I'm running is just: % git apply filesys.patch What am I doing wrong? diff --git a/src/filesys/directory.c b/src/filesys/directory.c index 0d265d5..31b7fd6 100644 --- a/src/filesys/directory.c +++ b/src/filesys/directory.c @@ -2,50 +2,57 @@ #include <stdio.h> #include <string.h> #include <list.h> +#include "filesys/file.h" #include "filesys/filesys.h" #include "filesys/inode.h" #include "threads/malloc.h" - -/* A directory. */ -struct dir - { - struct inode *inode; /* Backing store. */ - off_t pos; /* Current position. */ - }; ... more lines ... - Martin -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html