Re: [git-users] How can I set parameters using alias

2016-02-25 Thread hiroki yasui
You are right. git am have already been existing. After changed coam instead of am, it worked well!! Thanks!! 2016年2月25日木曜日 18時35分50秒 UTC+9 Konstantin Khomoutov: > > On Wed, 24 Feb 2016 20:10:09 -0800 (PST) > hiroki yasui wrote: > > > I ofter use the below command > >

Re: [git-users] Some strange behavior of git

2016-02-25 Thread Konstantin Khomoutov
On Wed, 24 Feb 2016 14:50:34 -0800 (PST) Ольга Пшеничникова wrote: [...] > git@ip5server:~$ git status > On branch master > Untracked files: > (use "git add ..." to include in what will be committed) > > app/addons/arliteks/ > > nothing

Re: [git-users] Some strange behavior of git

2016-02-25 Thread Konstantin Khomoutov
On Wed, 24 Feb 2016 14:50:34 -0800 (PST) Ольга Пшеничникова wrote: [...] > git@ip5server:~$ git status > On branch master > Untracked files: > (use "git add ..." to include in what will be committed) > > app/addons/arliteks/ > > nothing

Re: [git-users] How can I set parameters using alias

2016-02-25 Thread Konstantin Khomoutov
On Wed, 24 Feb 2016 20:10:09 -0800 (PST) hiroki yasui wrote: > I ofter use the below command > $git commit -am "something message" > > After setting alias, unfortunately that'd not work well. > > .gitconfig file is > [alias] > am = "!f(){ git commit -am \"$1\";};f" >