Just documenting a pro-tip from a friend. Any dev opinion is precious to me due to not working amongst them. Please don't go to twitter to flame hi...
For further actions, you may consider blocking this person and/or reporting abuse
For those of you that are confused, master is not deleted on the remote repo. It is only deleted on the local repo.
If all your merging happens on the remote repo, you don't need master locally. You can fetch and then create your feature branch from origin/master.
I'm not sure the benefits of this because I don't do this myself. You still need to update your local repo with a fetch. So I am doubtful of the savings.
Not endorsing, just offering an explanation.
The way
git fetch
works, you always have a local copy.When you do this...
... Your branch
my-new-branch
is identical toorigin/master
.So at any time you can always get that "this worked" version.
The whole thing is pulled down during
git fetch
.Otherwise there is no way you could create a new branch off of it.
This can be confirmed by disconnecting from the internet during the internet during the
git checkout
stage or by doing agit branch -a
to see all available branches.There is no avoiding pulling the whole master branch.
git pull
andgit fetch
will use the same bandwidth. The difference between the two isgit pull
will also perform a merge. But you could do agit fetch
and then amerge
to achieve the same results of apull
.The method laid out by OP would only require deleting the local version of master one time, not every time.
But because both
pull
andfetch
get all files. There isn't much saved by performing the process described in the original tweets.The main point of OP's post was that you can delete the master branch locally because using the process laid out above, you would never need a local master branch again.
There is no extra work. It is actually less work. You would only need to run 2 commands instead of 3 and with any
pull
, there is the possibility of merge conflicts.normal method
OP's method
Ooh thanks for identifying that only the local is deleted.
So this was my thought process: I thought they were pulling from a forked repo. I also thought they meant checkout
master
asmy-new-branch
, deletemaster
locally AND remotely, and pushmy-new-branch
as the authoritative new masterIt seems weird not to keep previous work around for future reference. I suppose they wanted to reduce redundancy of branches or repo files at that point. My mind likes to makeup stories
The work is always there in the
.git
folder. You just don't have the "branch".But once you do
git checkout -b my-new-branch origin/master
, you'll have an identical copy oforigib/master
it'll just be calledmy-new-branch
locally.So when you build your future with, it's built it the latest files.
I don't understand why this would do anything at all.
my-branch-name
is still going to have all the history ofmaster
in it, and now things are just that bit more confusing for new people starting on the project. And it doesn't deletemaster
either locally or remotely. Are you sure this isn't a joke?If you want to clean stuff up you can always squash some commits and run
git gc
, I guess, but unless your repo contains some seriously bonkers history it's probably not going to be an issue.I assume they decide to keep all the history up til that point... or methodically rewrite it
I think they meant to make a copy/alternate branch, push that, and deploy that going forward?
No. He means not checking out the master branch locally, just to use it as base to checkout your branch.
You can checkout your new branch directly from the remote ("origin" in this case).
The difference is that, when you checkout master locally then git build a working tree for it.
In order to understand it correctly, you need to keep in mind that you can't work in all of the branches.
Given that git stores the changes differentially, when you checkout a branch it needs to calculate the complete state of the files and make the needed changes to you local files to reach those changes.
I guess git calculates the commits it need to revert from your branch in order to reach merge base (the oldest common commit from both branches) and then it starts to apply the ones from the other branch.
That would trigger a lot of modifications for the local files and make take a long time specially if the files are big or there is a big amount of them in master.
That's my guess. That the problem is not so much with the history but with the amount of files.
Oh, gotcha.
If the problem is really with a big history... I guess it can be solved cloning the repo with an specific deep. The parameter is --deep. For example:
git clone --deep=100
Ohhhhhhhhhhhhhhhhh, no, please don't.
master
should be your canonical "we checked that this code works". If deletingmaster
seems like a "good idea," the team workflow is seriously borked, and you need to get outside help to overhaul it.Thanks for giving me perspective. I always enjoy these threads cause I'm never 100% sure of the approach but my lack of experience makes me real malleable
Like how?
The author did not actually delete master on the remote repo, if that's what you're implying.
While I wasn't entirely certain which
master
he referred to, my concern stands in either case. See my replies to the other comment pointing out that he meant "delete local master".I deleted my previous comments on this, to spare everyone the overblown misunderstand and unnecessary re-explanation it prompted. So, I'll try again.
Keeping a local copy of
master
is important for being able to see the "this works" version of the code, apart from your working branch, on your local machine using local tools. You don't edit it, you don't work on it, you onlygit pull
it when it has been updated remotely.This has nothing to do with branching. You can certainly branch from remote -- it may even save you some effort -- but that's beside my point. The local
master
copy is your clean "reading copy" of "this code works".Yeah but how do i check branches size?
master
isn't gone. You still have full access to it.You can even do:
To see what is in
origin/master
without the need for creating a local branch.You can also do:
At this point,
new-feature
is identical toorigin/master
.Be sure to run
git fetch
to sync any changes to the remote repo with your local.I've always worked like this. I start of with master. Push and "initial commit" and then checkout to develop/feature branch and then never turn back to master. ever again.
This whole thread devolved into a micromanagement session on how people work with branches on their local machine.
Everything is an exercise of interpretation 🤷🏻♀️
The only benefit that I see here is that I don't end up accidentally pushing to master, which has happened to many projects that I have worked on in the past.
One benefit is that you would not need to perform a merge. Any time you do
git pull
, you run the risk of having merge conflicts and having to merge.New Branch with master
New Branch without master
The 2nd method to create a feature branch described will never run into merge conflict.
Another benefit is that you do not need to enter (
checkout
) the master branch to create a new feature branch. The feature can be created from anywhere.