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
git status would also do the trick. On Dec 8, 2012 10:55 AM, "Philip Oakley" wrote: > ** > git-ls-files - Show information about files in the index and the working > tree > > (--[cached|deleted|others|ignored|stage|unmerged|killed|modified])* > > - Original Message - > *From:* Fanta > *T

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

2012-12-08 Thread Philip Oakley
git-ls-files - Show information about files in the index and the working tree (--[cached|deleted|others|ignored|stage|unmerged|killed|modified])* - Original Message - From: Fanta To: git-users@googlegroups.com Sent: Saturday, December 08, 2012 4:03 PM Subject: [git-users] How