About 231,000 results
Open links in new tab
  1. git - How to create a branch in GitHub - Stack Overflow

    Oct 28, 2016 · The browser creates the branch directly in the remote github project. Not in your working copy. Use git pull to synchronize the working copy with the changes made in the remote repo. You …

  2. How do I create a remote Git branch? - Stack Overflow

    4276 First, create a new local branch and check it out: git checkout -b <branch-name> The remote branch is automatically created when you push it to the remote server: git push <remote-name> …

  3. How to create the branch from a specific commit in a different branch

    In other words: if you merge branch A and branch B into branch C, then create a new branch on a commit of A, you won't get the changes introduced in B. Same here, you had two parallel branches …

  4. How do I create a new Git branch from an old commit?

    Possible Duplicate / a more recent/less clear question Branch from a previous commit using Git I have a Git branch called jzbranch and have an old commit id: a9c146a09505837ec03b. How do I crea...

  5. git - How to create a new branch from a tag? - Stack Overflow

    Jun 7, 2012 · I'd like to create a new master branch from an existing tag. Say I have a tag v1.0. How to create a new branch from this tag?

  6. git - How to branch from a previous commit - Stack Overflow

    To do this on github.com: Go to your project. Click on the "Commits". Click on the <> ("Browse the repository at this point in the history") on the commit you want to branch from. Click on the "tree: …

  7. Having a private branch of a public repo on GitHub?

    May 23, 2015 · To make a repository private on GitHub, you must have an upgraded (paid) account. If you're only rocking the free account, you can still use the first process I suggested — clone public to …

  8. How to create development branch from master on GitHub

    I created a repo on GitHub and only have a master branch so far. My local working copy is completely up to date with the remote/origin master on GitHub. I now want to create a development branch on …

  9. git - Create empty branch on GitHub - Stack Overflow

    Jul 14, 2020 · 370 I want to create a new GitHub branch, called release. This branch needs to be empty! However, there is an existing branch with x commits and I don't want to have its commit history. The …

  10. How to create new local branch and switch between branches in Git

    Mar 31, 2021 · You switch back and forth between branches using git checkout <branch name>. And yes, git checkout -b NEW_BRANCH_NAME is the correct way to create a new branch and switching …