You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zookeeper.apache.org by "Harsh J (Created) (JIRA)" <ji...@apache.org> on 2011/12/29 17:29:31 UTC

[jira] [Created] (ZOOKEEPER-1345) Add a .gitignore file with general exclusions and Eclipse project files excluded

Add a .gitignore file with general exclusions and Eclipse project files excluded
--------------------------------------------------------------------------------

                 Key: ZOOKEEPER-1345
                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-1345
             Project: ZooKeeper
          Issue Type: Improvement
          Components: build
    Affects Versions: 3.5.0
            Reporter: Harsh J
            Priority: Trivial


I tried looking for an .gitignore file in the ZK sources but I could not find one.

Preferably, we could add one with the following:

{code}
#	.classpath
#	.eclipse/
#	.project
#	.revision/
#	.settings/
#	build/
#	src/c/generated/
#	src/java/generated/
#	src/java/lib/ant-eclipse-1.0-jvm1.2.jar
#	src/java/lib/ivy-2.2.0.jar
{code}

To avoid losing much when doing "git clean -fd" and the likes while cleaning up the working repo dirs during development. This will aid those who use git mirrors for contributions a lot.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (ZOOKEEPER-1345) Add a .gitignore file with general exclusions and Eclipse project files excluded

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ZOOKEEPER-1345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13177979#comment-13177979 ] 

Hudson commented on ZOOKEEPER-1345:
-----------------------------------

Integrated in ZooKeeper-trunk #1413 (See [https://builds.apache.org/job/ZooKeeper-trunk/1413/])
    ZOOKEEPER-1345. Add a .gitignore file with general exclusions and Eclipse project files excluded (Harsh J via phunt)

phunt : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1225927
Files : 
* /zookeeper/trunk/.gitignore
* /zookeeper/trunk/CHANGES.txt

                
> Add a .gitignore file with general exclusions and Eclipse project files excluded
> --------------------------------------------------------------------------------
>
>                 Key: ZOOKEEPER-1345
>                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-1345
>             Project: ZooKeeper
>          Issue Type: Improvement
>          Components: build
>    Affects Versions: 3.5.0
>            Reporter: Harsh J
>            Assignee: Harsh J
>            Priority: Trivial
>             Fix For: 3.5.0, 3.3.5, 3.4.3
>
>         Attachments: ZOOKEEPER-1345.patch
>
>
> I tried looking for an .gitignore file in the ZK sources but I could not find one.
> Preferably, we could add one with the following:
> {code}
> #	.classpath
> #	.eclipse/
> #	.project
> #	.revision/
> #	.settings/
> #	build/
> #	src/c/generated/
> #	src/java/generated/
> #	src/java/lib/ant-eclipse-1.0-jvm1.2.jar
> #	src/java/lib/ivy-2.2.0.jar
> {code}
> To avoid losing much when doing "git clean -fd" and the likes while cleaning up the working repo dirs during development. This will aid those who use git mirrors for contributions a lot.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (ZOOKEEPER-1345) Add a .gitignore file with general exclusions and Eclipse project files excluded

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ZOOKEEPER-1345?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13177273#comment-13177273 ] 

Hadoop QA commented on ZOOKEEPER-1345:
--------------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12508855/ZOOKEEPER-1345.patch
  against trunk revision 1225352.

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  The patch doesn't appear to include any new or modified tests.
                        Please justify why no new tests are needed for this patch.
                        Also please list what manual steps were performed to verify this patch.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 findbugs.  The patch does not introduce any new Findbugs (version 1.3.9) warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

    +1 core tests.  The patch passed core unit tests.

    +1 contrib tests.  The patch passed contrib unit tests.

Test results: https://builds.apache.org/job/PreCommit-ZOOKEEPER-Build/868//testReport/
Findbugs warnings: https://builds.apache.org/job/PreCommit-ZOOKEEPER-Build/868//artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Console output: https://builds.apache.org/job/PreCommit-ZOOKEEPER-Build/868//console

This message is automatically generated.
                
> Add a .gitignore file with general exclusions and Eclipse project files excluded
> --------------------------------------------------------------------------------
>
>                 Key: ZOOKEEPER-1345
>                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-1345
>             Project: ZooKeeper
>          Issue Type: Improvement
>          Components: build
>    Affects Versions: 3.5.0
>            Reporter: Harsh J
>            Assignee: Harsh J
>            Priority: Trivial
>         Attachments: ZOOKEEPER-1345.patch
>
>
> I tried looking for an .gitignore file in the ZK sources but I could not find one.
> Preferably, we could add one with the following:
> {code}
> #	.classpath
> #	.eclipse/
> #	.project
> #	.revision/
> #	.settings/
> #	build/
> #	src/c/generated/
> #	src/java/generated/
> #	src/java/lib/ant-eclipse-1.0-jvm1.2.jar
> #	src/java/lib/ivy-2.2.0.jar
> {code}
> To avoid losing much when doing "git clean -fd" and the likes while cleaning up the working repo dirs during development. This will aid those who use git mirrors for contributions a lot.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Assigned] (ZOOKEEPER-1345) Add a .gitignore file with general exclusions and Eclipse project files excluded

Posted by "Harsh J (Assigned) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ZOOKEEPER-1345?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Harsh J reassigned ZOOKEEPER-1345:
----------------------------------

    Assignee: Harsh J
    
> Add a .gitignore file with general exclusions and Eclipse project files excluded
> --------------------------------------------------------------------------------
>
>                 Key: ZOOKEEPER-1345
>                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-1345
>             Project: ZooKeeper
>          Issue Type: Improvement
>          Components: build
>    Affects Versions: 3.5.0
>            Reporter: Harsh J
>            Assignee: Harsh J
>            Priority: Trivial
>         Attachments: ZOOKEEPER-1345.patch
>
>
> I tried looking for an .gitignore file in the ZK sources but I could not find one.
> Preferably, we could add one with the following:
> {code}
> #	.classpath
> #	.eclipse/
> #	.project
> #	.revision/
> #	.settings/
> #	build/
> #	src/c/generated/
> #	src/java/generated/
> #	src/java/lib/ant-eclipse-1.0-jvm1.2.jar
> #	src/java/lib/ivy-2.2.0.jar
> {code}
> To avoid losing much when doing "git clean -fd" and the likes while cleaning up the working repo dirs during development. This will aid those who use git mirrors for contributions a lot.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (ZOOKEEPER-1345) Add a .gitignore file with general exclusions and Eclipse project files excluded

Posted by "Harsh J (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ZOOKEEPER-1345?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Harsh J updated ZOOKEEPER-1345:
-------------------------------

    Attachment: ZOOKEEPER-1345.patch
    
> Add a .gitignore file with general exclusions and Eclipse project files excluded
> --------------------------------------------------------------------------------
>
>                 Key: ZOOKEEPER-1345
>                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-1345
>             Project: ZooKeeper
>          Issue Type: Improvement
>          Components: build
>    Affects Versions: 3.5.0
>            Reporter: Harsh J
>            Priority: Trivial
>         Attachments: ZOOKEEPER-1345.patch
>
>
> I tried looking for an .gitignore file in the ZK sources but I could not find one.
> Preferably, we could add one with the following:
> {code}
> #	.classpath
> #	.eclipse/
> #	.project
> #	.revision/
> #	.settings/
> #	build/
> #	src/c/generated/
> #	src/java/generated/
> #	src/java/lib/ant-eclipse-1.0-jvm1.2.jar
> #	src/java/lib/ivy-2.2.0.jar
> {code}
> To avoid losing much when doing "git clean -fd" and the likes while cleaning up the working repo dirs during development. This will aid those who use git mirrors for contributions a lot.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira