Skip to content
Permalink
wiki/Git-Push-Local-To-Remote-Repository.md
Fetching contributors…
Cannot retrieve contributors at this time
Push a new local branch to a remote Git repository and track it too
Create a new branch:
git checkout -b feature_branch_name
Edit, add and commit your files.
Push your branch to the remote repository:
git push -u origin feature_branch_name
It's as simple as that!
Something went wrong with that request. Please try again.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.