Re: [git-users] How often do I commit to branch?

2016-04-25 Thread hiroki yasui
Thanks Philip for your kind explanation. I got it completely. I do it depending on projects situation flexibly. 2016年4月25日月曜日 21時14分59秒 UTC+9 Philip Oakley: > > - Original Message - > > *From:* hiroki yasui > Hello guys, > > I've experienced some projects to deve

[git-users] How often do I commit to branch?

2016-04-25 Thread hiroki yasui
Hello guys, I've experienced some projects to develop application which use git. Each of projects has more or less different way how to operate git. However I'm confusing how often commit to branch and what is best unit of commit? Some project team don't care how to use git not only for commit

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 <hiro...@gmail.com > wrote: > > > I oft

[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.