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] 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" >

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

2016-02-24 Thread hiroki yasui
Hello guys, 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" And then I tried, $ git am "modified something logic" something error occurred.