This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # list of git commands to update your branch | |
| git checkout develop | |
| git fetch # get updates from all remote branches without updating the local branches. | |
| git rebase # apply updates in current branch from remote. | |
| git checkout your-branch | |
| git rebase develop # fast forwards your commits to the top of the develop branch | |
| # list of git commands to merge your branch into develop |
NewerOlder