% tar c project
A similar way to specify the same directory is:
% tar c ./project
If you are currently in the directory you want archived, you can type:
% tar c .
Another way to archive the current directory is to type:
% tar c *
Here, the shell expands the asterisk (*) to the
files in the current directory. However, it does not match files
starting with a dot (.), which is why the previous technique is
preferred.
This causes a problem when restoring a directory from a
tar archive. You may not know whether an archive
was created using . or the directory name.
I always check the names of the files before restoring an archive:
% tar t
If the archive loads the files into the current directory, I create a
new directory, change to it, and extract the files.
If the archive restores the directory by name, then I restore the
files into the current directory.