how to do when I am alert that github is behind 1 commit -
I am using guthub on various PCs. Clone the same repository, I modified the code and made changes in a PC. But when I open another PC, I warn that I am behind 1 commitment. How to process this problem?
You need to update the local GIT repository on other PCs.
Possibly you have already done this:
git fetch to remove the latest changes now with your remote Local branch needs to be merged:
git merge root / master (or the branch whose names are behind) < / Div>
Comments
Post a Comment