Re: [git-users] After git -am commit changed files are not in repo

2013-11-15 Thread Dave Kennedy
Solved I needed to push my changes to the remote repo! git push -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to git-users+unsubscr...@googlegroups.com.

Re: [git-users] After git -am commit changed files are not in repo

2013-11-14 Thread Dave Kennedy
I ran the following commands but still get the 'Your branch is ahead…' 1. git reset --hard origin/master 2. git pull Already up-to-date. 3. git status # On branch master # Changed but not updated: # (use "git add/rm ..." to update what will be committed) # (use "git checkout -- ..." to discar

Re: [git-users] After git -am commit changed files are not in repo

2013-11-14 Thread Dave Kennedy
Without the -s 'git status' returns 'Your branch is ahead of 'origin/master' by 1 commit. root@ip-xxx-xx-x-xxx:/var/www/myprojecgt# git status # On branch master # Your branch is ahead of 'origin/master' by 1 commit. # nothing to commit (working directory clean) On Thu, Nov 14, 2013 at 9:30 PM,

Re: [git-users] After git -am commit changed files are not in repo

2013-11-14 Thread Dave Kennedy
No the 'deleted' file, application.log, is still in the repo and the other commits I made are not showing up in the repo. I can't understand where the committed files went? On Thursday, November 14, 2013 8:28:22 PM UTC-8, Peter J Weisberg wrote: > > On Nov 14, 2013 7:53 PM, "Dave Kennedy" > > w

Re: [git-users] After git -am commit changed files are not in repo

2013-11-14 Thread PJ Weisberg
On Nov 14, 2013 7:53 PM, "Dave Kennedy" wrote: > > I have a git repository cloned to an AWS server. > But my commits are not showing up in the repository even though there is no error when I commit a file. > Is it OK to make commits as root or do I need to login with a git user name ? > > root@ip

[git-users] After git -am commit changed files are not in repo

2013-11-14 Thread Dave Kennedy
I have a git repository cloned to an AWS server. But my commits are not showing up in the repository even though there is no error when I commit a file. Is it OK to make commits as root or do I need to login with a git user name ? root@ip-xxx-xx-x-xxx:/var/www/myproject# git config --global use