-
Notifications
You must be signed in to change notification settings - Fork 1
More real life examples
Scrappers Team edited this page May 18, 2022
·
6 revisions
-
java-src
,natives-src
featured master sub-branches andsub-branch
a sub-branch ofnatives-src
showing a possibility of a conflict if the parent branchnatives-src
has changed and thesub-branch
hasn't been updated.
- To update the current branch with its parent use :
git pull https://github.com/Organization/REPO-NAME.git 'parent-branch'
Example, recall you are on sub-branch
which is a sub-branch of natives-src
, if changes has been commited by other fellows on natives-src
, you can update your branch to match these changes using :
git pull https://github.com/Google-Developers-Sohag/Github-Training.git 'natives-src'
-
shared-folder
,build-folder
andnative-byte-buffer
features created from different branches emerging from the master.