Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git: Efficient steps to create a new branch and push to remote

Tags:

git

bitbucket

I figured out the steps but seems cumbersome, take bitbucket for example, suppose i already have a project called prj

  1. I branch a new project from server side(bitbucket.com), called prj-bz
  2. From local i add add a remote git remote add prj-bz https://blah...
  3. At the same time from local i create a new branch called prj-bz
  4. From local i call git push prj-bz prj-bz to let local repo and remote one connected.

I checked out some git books but seem none cover this. Any more efficient way to do this?

like image 904
Mike Avatar asked Feb 28 '13 09:02

Mike


2 Answers

Generally, people usually do one or the other Fork or Branch. It sounds like you are making a Fork of a repo, then making a branch in the fork with the same name. If you're using a Pull Request to put data back in to the main repo, you don't need to do both. Pick one of the two workflows:

  • Fork the repo on Bitbucket (or other site)
  • Clone the repo git clone https://bitbucket.org/username/repo-fork.git
  • Work in that fork git commit -m "some work done", git push -u origin master
  • Create a Pull request to request your changes to be placed back into the parent of the fork

OR

  • Clone the main repo git clone https://bitbucket.org/username/repo-fork.git
  • Create a new local branch git checkout -b my-branch
  • Work in that branch git commit -m "some work done"
  • Push up the branch git push -u origin my-branch
  • Create a Pull request

With the branch method, I'm assuming you have rights to write to the main repo. If not, you'll want to stick to the fork method. There are more workflows out there too. Bitbucket also has a doc explaining this as well as one on Atlassian's website with a bit more depth on Git workflows.

like image 104
Marcus Avatar answered Dec 03 '22 11:12

Marcus


For creating new branch we will use: (using this command A new branch will create and the branch status will also change with newly created branch)

git checkout -b branch-name

And for pushing the changes we can run following commands:

git add . 
git commit -m "with meaningful comments" 
git push origin branch-name
like image 37
Faisal Sheikh Avatar answered Dec 03 '22 11:12

Faisal Sheikh