現在、AWSのEC2上で開発をしています。
git flow をインストールし、git flow initを行うと

[ec2-user@ip-xxx-xxx-xxx-xx sample]$ git flow init

Which branch should be used for bringing forth production releases?
- master
Branch name for production releases: [master] master
error: could not lock config file .git/config: 許可がありません
Branch name for "next release" development: [develop] 
error: could not lock config file .git/config: 許可がありません
fatal: Unable to create '/var/www/html/dev1/tomato/.git/index.lock': 許可があ        りません

How to name your supporting branch prefixes?
Feature branches? [feature/] 
error: could not lock config file .git/config: 許可がありません
Release branches? [release/] 
error: could not lock config file .git/config: 許可がありません
Hotfix branches? [hotfix/] 
error: could not lock config file .git/config: 許可がありません
Support branches? [support/] 
error: could not lock config file .git/config: 許可がありません
Version tag prefix? [] 
error: could not lock config file .git/config: 許可がありません

と表示されます。

また、権限関係の問題かと思い、configの権限を
-rwxrwxrwx 1 ec2-user ec2-user 264 9月 30 17:23 config

のように変更しているのですが、それでもうまくいきません。
どなたか分かる方いらっしゃらないでしょうか。