so that the temporary files stgit creates and uses (for commit changelogs and cover letters) do not pollute the output of `git status''. Signed-off-by: Dario Faggioli <dario.faggioli@citrix.com> CC: Ian Campbell <Ian.Campbell@citrix.com> CC: Ian Jackson <Ian.Jackson@eu.citrix.com> --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 3253675..3f59faf 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,9 @@ cscope.out cscope.po.out .config +.stgit-new.txt +.stgitmail.txt + dist stubdom/*.tar.gz
On 16/09/13 11:37, Dario Faggioli wrote:> so that the temporary files stgit creates and uses (for > commit changelogs and cover letters) do not pollute the > output of `git status''.Since this is only needed by people using stgit I''m wondering if those rules would be better placed on .git/info/exclude (which is not public).
On lun, 2013-09-16 at 11:45 +0200, Roger Pau Monné wrote:> On 16/09/13 11:37, Dario Faggioli wrote: > > so that the temporary files stgit creates and uses (for > > commit changelogs and cover letters) do not pollute the > > output of `git status''. > > Since this is only needed by people using stgit I''m wondering if those > rules would be better placed on .git/info/exclude (which is not public). >Well, there are stuff like cscope related entries and ctags related entries in .gitignore, relevant only to people using cscope and ctags, and that''s why I put these two there too. Anyway, I''ve got no particular issue in moving them somewhere else (except finding out what .git/info/exclude is and how it works :-P) Dario -- <<This happens because I choose it to happen!>> (Raistlin Majere) ----------------------------------------------------------------- Dario Faggioli, Ph.D, http://about.me/dario.faggioli Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK) _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
Roger Pau Monné writes ("Re: [Xen-devel] [PATCH] gitgnore: tweaks for stgit"):> On 16/09/13 11:37, Dario Faggioli wrote: > > so that the temporary files stgit creates and uses (for > > commit changelogs and cover letters) do not pollute the > > output of `git status''. > > Since this is only needed by people using stgit I''m wondering if those > rules would be better placed on .git/info/exclude (which is not public).I wonder why they shouldn''t be in the stgit user''s ~ somewhere. Ian.