Re: [git-users] git add doesn't display anything

2014-12-13 Thread Konstantin Khomoutov
On Fri, 12 Dec 2014 21:51:09 +0100 s.cel...@gmail.com s.cel...@gmail.com wrote: $ git version git version 2.2.0 type again $ git add -v foo.txt no message will display with verbose flag we could have a message similar to SVN svn: warning: W150002: 'foo.txt' is already under version

Re: [git-users] git add doesn't display anything

2014-12-13 Thread s.cel...@gmail.com
Thanks a lot for this very informative answer. I will read a good Git book. 2014-12-13 18:17 GMT+01:00 Konstantin Khomoutov flatw...@users.sourceforge.net: On Fri, 12 Dec 2014 21:51:09 +0100 s.cel...@gmail.com s.cel...@gmail.com wrote: $ git version git version 2.2.0 type again $

Re: [git-users] git add doesn't display anything

2014-12-12 Thread Gergely Polonkai
Git doesn't actually work this way. After you added your file with git add, you can use git status to check what will be included in your commit. If you are satisfied with the result, you can do a git commit. On 12 Dec 2014 17:21, scls s.cel...@gmail.com wrote: Hello, I'm new to Git so please

Re: [git-users] git add doesn't display anything

2014-12-12 Thread s.cel...@gmail.com
I could expect verbose flag will made git become more verbose... but that's no so easy thanks for git status tip 2014-12-12 18:18 GMT+01:00 Konstantin Khomoutov flatw...@users.sourceforge.net: On Fri, 12 Dec 2014 00:45:45 -0800 (PST) scls s.cel...@gmail.com wrote: I'm new to Git so

Re: [git-users] git add doesn't display anything

2014-12-12 Thread Konstantin Khomoutov
On Fri, 12 Dec 2014 18:24:34 +0100 s.cel...@gmail.com s.cel...@gmail.com wrote: I could expect verbose flag will made git become more verbose... but that's no so easy Well, works for me: ~% cd /tmp tmp% mkdir foo tmp% cd foo foo% git init Initialized empty Git repository in /tmp/foo/.git/

Re: [git-users] git add doesn't display anything

2014-12-12 Thread s.cel...@gmail.com
$ git version git version 2.2.0 type again $ git add -v foo.txt no message will display with verbose flag we could have a message similar to SVN svn: warning: W150002: 'foo.txt' is already under version control svn: E29: Could not add all targets because some targets are already versioned