Changes
Page history
Update how to sync repos
authored
Nov 10, 2019
by
Roland Alton
Hide whitespace changes
Inline
Side-by-side
how-to-sync-repos.md
View page @
6d6598be
...
@@ -81,4 +81,29 @@ Source: https://www.atlassian.com/de/git/tutorials/merging-vs-rebasing
...
@@ -81,4 +81,29 @@ Source: https://www.atlassian.com/de/git/tutorials/merging-vs-rebasing
If you want to update the develop branch from upstream in https://git.fairkom.net/chat/fairchat.ReactNative/tree/develop then you do a
If you want to update the develop branch from upstream in https://git.fairkom.net/chat/fairchat.ReactNative/tree/develop then you do a
> git checkout upstream/develop
> git checkout upstream/develop
> git push origin HEAD:develop
> git push origin HEAD:develop
\ No newline at end of file
## Start over in a nutshell
Throw away developFairchat and create a new empty one with the actual developRC code:
```
git checkout developRC
git fetch upstream
git checkout developFairchat
git push origin --delete developFairchat
git push origin -u developFairchatStuck1
git checkout -b developFairchat
git push --set-upstream origin developFairchat
```
then cherry pick
```
// android launch screen in all resolutions
git cherry-pick 6acc21e4
// replace in all resolutions logo
git cherry-pick afe7107
```
6
see commits