Re: How to add folder NON RECURSIVELY ?
From: Matthieu Moy <hidden>
Date: 2016-06-15 22:53:27
"J. Bakshi" [off-list ref] writes:
Could you please suggest how can I add foo/dir1/file1 ? guess touch foo/dir1/.gitignore git add foo/dir1/
Not if you want only "file1" to be added. As I said, Git doesn't know and doesn't want to know about directories. So "git add directory/" is just a shorthand that adds all (non-ignored) files in this directory.
git add foo/dir1/file1
This last line alone will do it. -- Matthieu Moy http://www-verimag.imag.fr/~moy/