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

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

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

  8. How do I create a new GitHub repo from a branch in an existing repo?

    Mar 2, 2012 · Create the new-repo in github. cd to your local copy of the old repo you want to extract from, which is set up to track the new-project branch that will become the new-repo 's master.

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

  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 create, and …