-
Notifications
You must be signed in to change notification settings - Fork 2k
fixed to be more precise #546
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
||
The first line tells Git to ignore any files ending in ``.o'' or ``.a'' – object and archive files that may be the product of building your code. | ||
The second line tells Git to ignore all files that end with a tilde (`~`), which is used by many text editors such as Emacs to mark temporary files. | ||
The second line tells Git to ignore all files that end with a tilde (`~`) in the filename, which is used by many text editors such as Emacs to mark temporary files. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if we say "all files whose names end with a tilde"? I think that's slightly smoother.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok... i changed and pushed... you think
If your preferred editor is Emacs or Vim, you know about files that end with a ~
or .swp
in the filename.
will be
If your preferred editor is Emacs or Vim, you know about files whose names end with a ~
or .swp
.
and
The second line tells Git to ignore all files that end with a tilde (~
) in the filename, which is used by many text editors such as Emacs to mark temporary files.
to
The second line tells Git to ignore all files whose names end with a tilde (~
), which is used by many text editors such as Emacs to mark temporary files.
... may sound repetitive, but they are in different sections of the book.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, those changes sound great.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This case seems like can directly mention the "filenames":
If your preferred editor is Emacs or Vim, you know about filenames that end with a ~
or .swp
.
I like it. Do you feel like this is ready? |
Sure, they look good to me. |
it really is a filename that ends with a
~
, instead of a file that ends with a~