About 125,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 …

  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 …

  3. 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 …

  4. 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?

  5. 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 …

  6. 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 …

  7. 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 …

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

    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 …

  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 …

  10. Create a branch in Git from another branch - Stack Overflow

    Dec 17, 2010 · Go to your GitHub repository, and select the branch name from where you want to create a new branch, as shown in the below image: Then type the branch name you want to …