I reviewed the current solutions here for the problem I ran into, but their answers don't seem to solve the problem of getting push to work.
I have a local branch named "dev" that is supposed to be tracking the remote branch "v1.0-7.22-dev".
I cloned the repo and checked the remote branch "v1.0-7.22-dev" as the local "dev".
I made a commit for my local "dev", and when I run the git status, I get the following:
$ git status
When I commit:
$ git push Password: Everything up-to-date
My configuration file ( server name and repo name has been edited )
[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* url = ssh://[server-URL]/[remote-repo-directory] [branch "master"] remote = origin merge = refs/heads/master [branch "dev"] remote = origin merge = refs/heads/v1.0-7.22-dev
source share