Smartgit Push: not all links were clicked

I started learning Git for a week, and I ran into a problem at work. The fact is that I made some changes when I was in a branch develop, and after I finished my work, I tried to commit and click, but I could not get rid of the last error. Here you can see a screenshot of smartgit s and magazines.

enter image description here

also you can see the log file here;

enter image description here

+3
source share
2 answers

just do

git checkout develop
git pull
git push

You have this error because there are several new commits in the remote deployment branch that you do not have in your local development branch, these changes should be selected first

+9
source

, , , -

+1

All Articles