I have an Amazon EC2 micro instance. Everything is set up: httpd, php, git, ssh keys ...
However i cant git push from local to the EC2 instance. I've read a lot of questions, including the git push error '[remote rejected] master -> master (branch is currently checked out)', but the fixes are not working for me.
I'm working locally with Windows 7, 1.7.3.1.msysgit.0.
EC2 is a Amazon Linux AMI, git version 1.7.4.5
Here's my workflow (using jQuery as example):
EC2:
ssh ec2-user@my-elastic-ip
cd /var/www/html
git init #Output: Initialized empty Git repository in /var/www/html/.git/
Local:
git clone https://github.com/jquery/jquery.git jquery
git remote rm origin
git remote add origin ec2-user@my-elastic-ip:/var/www/html
git add .
git commit -m 'Test' #Output: On branch master nothing to commit (working directory clean)
git push origin master
Output:
Counting objects: 21434, done. Delta compression using up to 8 threads. Compressing objects: 100% (5375/5375), done. Writing objects: 100% (21434/21434), 13.12 MiB | 459 KiB/s, done. Total 21434 (delta 15487), reused 21434 (delta 15487) remote: error: refusing to update checked out branch: refs/heads/master remote: error: By default, updating the current branch in a non-bare repository remote: error: is denied, because it will make the index and work tree inconsistent remote: error: with what you pushed, and will require 'git reset --hard' to match remote: error: the work tree to HEAD. remote: error: remote: error: You can set 'receive.denyCurrentBranch' configuration variable to remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into remote: error: its current branch; however, this is not recommended unless you remote: error: arranged to update its work tree to match what you pushed in some remote: error: other way. remote: error: remote: error: To squelch this message and still keep the default behaviour, set remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'. To ec2-user@my-elastic-ip:/var/www/html ! [remote rejected] master -> master (branch is currently checked out) error: failed to push some refs to 'ec2-user@my-elastic-ip:/var/www/html'