master branch branch B branch A history changes in B isn’t reflected to A reflect changes in A branch to a master branch reflect changes in B branch master branch has both changes by A and B changes in A isn’t reflected to B
in our company ... ‣ manage and share problems / new idea ... etc about projects ‣ review and discuss about contents members coded / created ‣ assessment for engineer’s grade ... and more! Github is ... ?
environment from others (branching) edit / add files (developing) reflect changes to a repository git git git repeat bit by bit till developing is complete merge branch to master branch deploy github
environment from others (branching) edit / add files (developing) reflect changes to a repository git git git repeat bit by bit till developing is complete merge branch to master branch deploy github TODAY TOMORROW
have yet ) ‣ switch existing branch to do before developing git checkout -b (branch name you want to naming) git checkout (branch name you want to switch)
committed files to repository commit / push git add . git commit -m “(simple explanation about this committing)” git push origin (name of branch you editing) ex. ) “added a new logo image file”