Background:
I have been using git for a while now but i'm more comfortable using git-Kraken as a visual tool for managing my repos, but i can still get my way around command-line-git.
I have a project setup such that there are following changes:
For sake of simplicity and understanding lets say we have 2 projects A and B, where Project B is a Forked repo of project A.
now,
I have configured my PUSH and FETCH such that,
FETCH <- Data comes from Project A (original Repo of code)
PUSH -> Data Goes to Project B (The forked one)
everything is working fine in terms of Code on server as the code is available perfectly fine on the servers repos AS EXPECTED.
Problem Statement:
After committing code, my Git status remains unchanged!
what i mean is, lets say i have 4 commits to be pushed on the server,
Technically, my git status would be 4↑
Now Lets say I have perfectly pushed them!
Technically, the git status should change from: 4↑ to: 0↑
but my git status remains unchanged.
This is happening on both the VSCode status and GitKraken Status
now i wanna know is, why could that be happening? also, is it specifically bcuz i have added different push and fetch or bcuz of the bitBucket itself.
thanks.