git push: everything up-to-date / git status has changes committed: -
yesterday, git working normally. making changes , uploading changes origin/master.
git commit -a -m 'comment' git push
today, when did sequence, after making modifications git push did not recognize commits. can explain going on... , how fix it. have provided copy of git log (i know how git clone , migrate changes new clone, trying understand why git commits not working?)
sequence below
git status on branch master branch up-to-date 'origin/master'. changes committed: (use "git reset head <file>..." unstage) modified: requirements.txt new file: src/bin/setup_linux.sh deleted: src/echo
when run git push up-to-date
git push username 'http://giturl': gituid password 'http://giturl': up-to-date git log
commit df3a71f7af9070a826a3742751611d3d3fa898a9 author: gituid date: mon oct 12 16:54:51 2015 -0400
fix docs
commit a8c5867222147e366fc968e9b47daa5d237ecde5 author: gituid date: mon oct 12 16:53:28 2015 -0400
fix docs
git push
cares changes have been committed. git status
shows have outstanding changes, , there no new commits since last time pushed/pulled. conclusion: you have not made commits, , there nothing pushed.
Comments
Post a Comment