Re: [git-users] How to list a directory content with Git or GitHub

2012-12-12 Thread Fanta
Thank you William. On Sunday, December 9, 2012 1:50:45 AM UTC+1, William Mizuta wrote: > > If you know the directory hash code, you can use git ls-tree hash. To know > your directory hash you can use git ls-tree HEAD, which shows you every > file/directory hash of your project root. > [...] > -

Re: [git-users] How to list a directory content with Git or GitHub

2012-12-12 Thread Fanta
Thank you Ryan, that is what I was looking for. --

Re: [git-users] How to list a directory content with Git or GitHub

2012-12-08 Thread William Mizuta
If you know the directory hash code, you can use git ls-tree hash. To know your directory hash you can use git ls-tree HEAD, which shows you every file/directory hash of your project root. William Seiti Mizuta @williammizuta Desenvolvedor da Caelum On Sat, Dec 8, 2012 at 7:07 PM, Ryan Hodson

Re: [git-users] How to list a directory content with Git or GitHub

2012-12-08 Thread Ryan Hodson
Try git ls-files (no hyphen after the git command). On Dec 8, 2012 3:00 PM, "Fanta" wrote: > > Thank you Ryan. git status only lists files the are untracked (and not listed in .gitignore) or to be committed. > > -- > > --

Re: [git-users] How to list a directory content with Git or GitHub

2012-12-08 Thread Fanta
Thank you Ryan. git status only lists files the are untracked (and not listed in .gitignore) or to be committed. --

Re: [git-users] How to list a directory content with Git or GitHub

2012-12-08 Thread Fanta
Thank you; I guess the command works under Unix. Under Windows it doesn't: *C:\workspace>git ls files git: 'ls' is not a git command. See 'git --help'. Did you mean this? log C:\workspace>git-ls-files 'git-ls-files' is not recognized as an internal or external command, operable program o

Re: [git-users] How to list a directory content with Git or GitHub

2012-12-08 Thread Ryan Hodson
l Message - > *From:* Fanta > *To:* git-users@googlegroups.com > *Sent:* Saturday, December 08, 2012 4:03 PM > *Subject:* [git-users] How to list a directory content with Git or GitHub > > Hello. How can I list the content of a directory in a local repository, > telling apart fi

Re: [git-users] How to list a directory content with Git or GitHub

2012-12-08 Thread Philip Oakley
to list a directory content with Git or GitHub Hello. How can I list the content of a directory in a local repository, telling apart files and directories that are under GIT configuration from those that are not? I am using Git and GitHub under MS Windows.Thanks! -- Philip --

[git-users] How to list a directory content with Git or GitHub

2012-12-08 Thread Fanta
Hello. How can I list the content of a directory in a local repository, telling apart files and directories that are under GIT configuration from those that are not? I am using Git and GitHub under MS Windows.Thanks! --