github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

andychilton / cil

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 42
    • 3
  • Source
  • Commits
  • Network (3)
  • Issues (1)
  • Downloads (10)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (7)
    • master ✓
    • v0.06
    • v0.1
    • v0.2
    • v0.3
    • v0.4
    • v0.5
  • Tags (10)
    • v0.06.00
    • v0.5.1
    • v0.5.0
    • v0.4.2
    • v0.4.1
    • v0.4.0
    • v0.3.0
    • v0.2.1
    • v0.2.0
    • v0.1.0
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

DVCS backed issue tracking system — Read more

  cancel

http://www.chilts.org/project/cil/

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

cil-d3ac4078: New Comment 
andychilton (author)
Mon Feb 08 11:08:07 -0800 2010
commit  43b26399449ac546bfc6c3dcad99b80b1d78dd1c
tree    ae25736e83d961e31cd37d99aa552ee178e601c6
parent  e8893c13e951c0e49389817d056943f12d566e19
cil /
name age
history
message
file .cil Mon Jan 25 01:55:50 -0800 2010 cil-03c93e82: Removed all the VCS stuff we do n... [andychilton]
file .gitignore Tue Feb 02 23:24:52 -0800 2010 Ignore build files [grantm]
file AUTHORS Tue Feb 02 23:45:28 -0800 2010 Updated AUTHORS file [andychilton]
file Build.PL Tue Feb 02 23:24:53 -0800 2010 Fix dependencies [grantm]
file COPYING Sat Apr 19 14:58:54 -0700 2008 Added copyrights, instructions and license info... [andychilton]
file Changes Sun Jul 13 03:34:55 -0700 2008 Added initial hook framework infrastructure (cl... [andychilton]
file INSTALLATION Sun Jan 24 12:52:35 -0800 2010 cil-1111d724: Added to control files and INSTAL... [andychilton]
file MANIFEST Tue Feb 02 23:24:52 -0800 2010 Remove obselete files from MANIFEST [grantm]
file MANIFEST.SKIP Thu Jul 31 02:06:51 -0700 2008 Added proper MANIFEST and MANIFEST.SKIP files ... [melo]
file Makefile Sun Jan 24 02:16:07 -0800 2010 Prepare for next major release [andychilton]
file README Thu Jul 03 04:23:47 -0700 2008 Added the 'steal' command (closes #6b087805). [andychilton]
directory bin/ Mon Jan 25 01:55:50 -0800 2010 cil-03c93e82: Removed all the VCS stuff we do n... [andychilton]
directory debian-etch/ Sun Jan 24 12:52:35 -0800 2010 cil-1111d724: Added to control files and INSTAL... [andychilton]
directory debian-lenny/ Sun Jan 24 12:52:35 -0800 2010 cil-1111d724: Added to control files and INSTAL... [andychilton]
directory etc/ Tue Jul 01 05:36:18 -0700 2008 Progress on #c98515e2, can now do 'depends-on' ... [andychilton]
directory issues/ Mon Feb 08 11:08:07 -0800 2010 cil-d3ac4078: New Comment [andychilton]
directory lib/ Thu Jan 28 21:45:50 -0800 2010 cil-c77fae7c: Now does a nicer commit message f... [andychilton]
directory t/ Wed Jun 18 05:45:10 -0700 2008 Update almost everything to a newer format, bot... [andychilton]
directory ubuntu-jaunty/ Tue Feb 02 23:24:53 -0800 2010 remove libclass-factory-perl and libemail-filte... [grantm]
README
===============================================================================

Overview
--------

'cil' allows easy command-line creation of an issue tracker. It saves each
issue locally and in plain text. Commands are given such that these issues can
be added, edited and listed easily.

===============================================================================

Quick Start
-----------

Once installed, you should be able to run 'cil':

 $ cil --help

Now change directory to your current development project. To save the issues,
'cil' requires setting up, so issue the 'init' command:

 $ cil init

This creates a '.cil' file and an 'issues/' directory.

Then add an issue. An editor will pop-up and you fill in the details:

 $ cil add

After you've added it, you can see a representation of the issue. Now you can
list all the issues by using the 'list' command:

 $ cil list

When listing the issues, they can also be filtered:

 $ cil list --status=New
 $ cil list --label=Type-Enhancement
 $ cil list --is-open
 $ cil list --label=Milestone-v0.3 --is-open
 $ cil list --is-mine

You can see what the issue name is by looking at the 'Issue' title. Imagine it
is 'cafebabe' (which by default is the time from epoch). To see your issue
again, use the 'show' command:

 $ cil show cafebabe

Another reporting command is 'summary' for which all the filter options also
apply:

 $ cil summary
 $ cil summary --status=New
 $ cil summary --label=Type-Enhancement
 $ cil summary --is-open
 $ cil summary --label=Milestone-v0.3 --is-open

The columns show 'Name', 'Status', 'CreatedBy' and 'Summary'.

Shucks, we've noticed we got something wrong in the issue. Let's edit it:

 $ cil edit cafebabe

Save your changes and exit your editor. The issue is now saved. Try showing it
again to make sure your changed are correct.

We have just found out more about the issue so let's add a comment to it:

 $ cil comment cafebabe

When you show the issue again, you'll see the comment has been added and is now
displayed.

Adding an attachment is easy:

 $ cil attach cafebabe core
 ... added attachment 'decaf7ea' ...
 $ cil show cafebabe

If someone else added the attachment and you wish to view it, you can extract
it from the issue:

 $ cil extract decaf7ea --filename=mycore

If someone sends you a bug report or a comment via email and you wish to import
it into your issues list, you can use the 'am' command to do it's best to
import it. It will try and figure out if an issue is already mentioned and if
so, will try and import the email as a comment for that particular issue. In
the case where an existing issue is not found, it will import the email as a
new issue:

 $ cil am email.txt

Finally, because the cil issue files reside on the filesystem in flat files,
there needs to be a way to check the integrity of the issues, therefore you can
run this to do checks regarding the whole issue list:

 $ cil fsck

That's it for now. As you can see, if you've played with any kind of bug/issue
tracker before, 'cil' is straightforward.

Sometimes, you might add someone else repository from which you want to fetch
both code and issues. If you merge a new issue and you want to assign it to
yourself, instead of editing the issue and having to type in your name and
email, just use 'cil steal'. This will assign the issue to yourself and save it
back out:

 $ cil steal cafebabe

Then just commit it to your VCS.

===============================================================================
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server