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

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

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -