Kiln » gitkiln Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

add version command

Changeset b56064d5e3cc

Parent 543065b40c93

by Profile picture of User 12Benjamin Pollack <benjamin@fogcreek.com>

Changes to 2 files · Browse files at b56064d5e3cc Showing diff from parent 543065b40c93 Diff from another changeset...

Change 1 of 2 Show Entire File main.go Stacked
 
50
51
52
 
 
53
54
55
 
251
252
253
 
 
254
255
256
 
50
51
52
53
54
55
56
57
 
253
254
255
256
257
258
259
260
@@ -50,6 +50,8 @@
  work fine.   showfile <file> [<file2> [...]]   show the contents of one or more files in Kiln + version + show gitkiln's version number    If you provide no command, git-kiln will take you to the repository in  Kiln. @@ -251,6 +253,8 @@
  k.BrowseFile(repoPath, file)   }   } + case "version": + fmt.Println(version)   default:   showHelp()   }
Change 1 of 1 Show Entire File version.go Stacked
 
 
 
 
 
1
2
3
@@ -1,0 +1,3 @@
+package main + +const version = "0.9.0"