Git not updating anymore

MikZ

New member
Messages
461
Points
0
Good day!

I updated my GIT last September 14 and tried updating today. However, it's not updating anymore, seen lots of pull merges but git says already update.

Please help me how to solve this. thanks!

Code:
[myhobby@localhost]$ git stash save
Saved working directory and index state WIP on stable: 551eb6d update 09302018
HEAD is now at 551eb6d update 09302018
[myhobby@localhost]$ git pull
remote: Enumerating objects: 177, done.
remote: Counting objects: 100% (177/177), done.
remote: Total 229 (delta 177), reused 177 (delta 177), pack-reused 52
Receiving objects: 100% (229/229), 522.64 KiB | 0 bytes/s, done.
Resolving deltas: 100% (177/177), completed with 49 local objects.
From https://github.com/HerculesWS/Hercules
 + e3364a1...6d90af7 coverity_scan -> origin/coverity_scan  (forced update)
   852c133..baeb7a1  master     -> origin/master
Already up-to-date.
[myhobby@localhost]$ git stash pop
# On branch stable
# Your branch is ahead of 'origin/stable' by 2 commits.
#   (use "git push" to publish your local commits)
#
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   conf/char/char-server.conf
#       modified:   conf/login/login-server.conf
#       modified:   src/map/pc.c
#       modified:   src/plugins/Makefile.in
#
no changes added to commit (use "git add" and/or "git commit -a")
Dropped refs/stash@{0} (f5dc24cc389ca564651bbf2547ac42b96bee5226)
 
you using stable branch. this branch updated only on release time. this is mostly once per month.

also you have two custom commits in local branch.

you can switch to master branch by command git checkout master

 
Back
Top