github - What is this git command saying? -
what git command saying? it-staging:master? master part throwing me off. how can branch it-staging have master under/in it?
git push my-staging it-staging:master
if run git push --help
, find example following
git push origin head:master push current branch remote ref matching master in origin repository. form convenient push current branch without thinking local name.
for question, it-staging:master
means push local branch it-staging
remote branch master
.
Comments
Post a Comment