GIT: My Teammate cannot pull the changes I pushed -
i beyond new git, , infact have set svn (my comfort zone). there "single" remote repository both pushing , pulling changes off of single master branch. pushed number of changes, pulled fourth location (production server) know changes made "single" remote repository.
my git push yields "everything up-to-date" message.
how go debugging situation. assume issue on end, don't know how guide him on investigation. nor can find source of logging.
any on approach diagnosing problem appreciated.
thank you
first, need make sure have pushed want.
check output of:
git branch -avv
(to see if have active branch, or if in detached head mode)git log
(to check last recent sha1 on branch)git ls-remote origin
(to see if same sha1 has indeed been pushed)
then can repeat checks on production side, see why git pull
wouldn't fetch , merge recent sha1 have pushed.
Comments
Post a Comment