9951 explained code solutions for 126 technologies


gitHow to push local branch to a remote repository


git push --set-upstream origin branch_namectrl + c
--set-upstream

track new upstream branch with git

origin

your remote repository name (most of the time is origin)

branch_name

local branch you want to push to remote repository