with git add . , a directory is expected, but I don't need all my files to
be recorded, only one of my thousands, so how can I record just 1 file?
--
View this message in context: http://www.nabble.com/git-only-one-file-tp25140456p25140456.html
Sent from the git mailing list archive at Nabble.com.
On Tue, Aug 25, 2009 at 9:12 PM, synhedionn[off-list ref] wrote:
with git add . , a directory is expected, but I don't need all my files to
be recorded, only one of my thousands, so how can I record just 1 file?
By only adding this file to the index. Use "git add $yourfile" instead
of "git add ."
If you do not want to see your thousands of files in the directory
when running git status, you can simply create a .gitignore file with
* as content. Git will still notify you about files which it already
knows about, even though the .gitignore entry tells it to ignore
everything.
Matthias
synhedionn wrote:
with git add . , a directory is expected, but I don't need all my files
to be recorded, only one of my thousands, so how can I record just 1 file?
git add /path/to/file
--
View this message in context: http://www.nabble.com/git-only-one-file-tp25140456p25718014.html
Sent from the git mailing list archive at Nabble.com.