git-lfs/commands/command_ls_files.go

63 lines
1.0 KiB
Go
Raw Normal View History

package commands
import (
"os"
2015-09-25 05:30:23 +00:00
2015-03-19 19:30:55 +00:00
"github.com/github/git-lfs/git"
"github.com/github/git-lfs/lfs"
2015-05-25 18:20:50 +00:00
"github.com/github/git-lfs/vendor/_nuts/github.com/spf13/cobra"
)
var (
2015-09-25 05:30:23 +00:00
longOIDs = false
lsFilesCmd = &cobra.Command{
2015-09-17 22:08:28 +00:00
Use: "ls-files",
Run: lsFilesCommand,
}
)
func lsFilesCommand(cmd *cobra.Command, args []string) {
requireInRepo()
2014-10-11 14:28:46 +00:00
var ref string
var err error
if len(args) == 1 {
ref = args[0]
2014-10-11 14:28:46 +00:00
} else {
2015-08-21 14:18:26 +00:00
fullref, err := git.CurrentRef()
2014-10-11 14:28:46 +00:00
if err != nil {
Exit(err.Error())
2014-10-11 14:28:46 +00:00
}
ref = fullref.Sha
}
showOidLen := 10
2015-09-25 05:30:23 +00:00
if longOIDs {
showOidLen = 64
2015-09-25 05:30:23 +00:00
}
files, err := lfs.ScanTree(ref)
2015-09-19 06:59:39 +00:00
if err != nil {
Panic(err, "Could not scan for Git LFS tree: %s", err)
2015-09-19 06:59:39 +00:00
}
for _, p := range files {
Print("%s %s %s", p.Oid[0:showOidLen], lsFilesMarker(p), p.Name)
}
}
func lsFilesMarker(p *lfs.WrappedPointer) string {
info, err := os.Stat(p.Name)
if err == nil && info.Size() == p.Size {
return "*"
}
return "-"
}
func init() {
lsFilesCmd.Flags().BoolVarP(&longOIDs, "long", "l", false, "")
RootCmd.AddCommand(lsFilesCmd)
}