Git Branching and Merging -


being new git, how handle following scenario:

i'm working on bug fix , want in separate branch. have remote git repo , have cloned it. when git branch on local file system, can see i'm pointing master. created new branch using:

git checkout -b mybranchname 

is newly created branch available in remote repo?
should push explicitly?
best workflow this?

is newly created branch available in remote repo?

nope, branch "private" branch means local branch until push remote.

should push explicitly?

yes.

what best workflow this?

im recommending on using gitflow.


Comments

Popular posts from this blog

asp.net mvc - Cannot display error message on Editor or EditorFor -

Reliable way to get Windows Version from registry -

python - No exponential form of the z-axis in matplotlib-3D-plots -