From: David <wizzardx@gmail.com>
To: "James Sadler" <freshtonic@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: avoiding committing personal cruft
Date: Sun, 22 Jun 2008 09:58:13 +0200 [thread overview]
Message-ID: <18c1e6480806220058u72b1cbc5x9ec737c724258608@mail.gmail.com> (raw)
In-Reply-To: <e5e204700806211901v17a0450fw56b9db1c8c578dd@mail.gmail.com>
Re-cc-ing the list, I assume you didn't intend to mail me off-list.
On Sun, Jun 22, 2008 at 4:01 AM, James Sadler <freshtonic@gmail.com> wrote:
> 2008/6/22 David <wizzardx@gmail.com>:
>> On Sat, Jun 21, 2008 at 3:20 PM, James Sadler <freshtonic@gmail.com> wrote:
>>>
>>> The ide-branch has nothing in it except the cruft from the IDE and the
>>> paths leading up to that cruft.
>>> The master branch has a .gitignore that ignores the IDE files so I
>>> won't end up polluting master by accident.
>>>
>>> It's a manageable solution for now. I tend to think of it
>>> conceptually as 'layering' two branches: I want the
>>> content of both present in the working tree.
>>>
>>> I was just wondering if anyone else has tried something similar.
>>>
>>
>> Sounds like a normal use of topic branches. Branches rebased against
>> master, where you you keep changes you don't want to go into the main
>> branch at this time.
>
> Just to clarify, are you saying that the topic branch would contain
> all of master + ide cruft?
> I was maintaining a branch that *only* contained my ide cruft.
>
More correctly, the topic branch would contain the changes to the
master branch required to add your personal cruft.
Here is one relatively simple way to do it (there are other ways, this
one works well for me when I have local cruft I want for local dev but
don't want in public repos):
Assuming you have these 2 branches:
master - clean & version, ready to be used by others)
james_updates - your own private cruft. work in progress, ide files,
etc, on top of the master branch. Not ready for others yet.
Do all your hacking, private commits, cruft updates, etc in the
james_updates branch. Also try to keep changes in separate commits (1
for cruft & personal files, 1 for feature change X, one for bugfix Y,
etc).
Later, when you are ready to move (some of the) changes over to the
master branch:
1) Make a temporary copy of the james_updates branch:
git checkout james_updates
git checkout -b james_updates_tmp
2) Interactively rebase the temporary branch over to master:
git rebase -i master
During the interactive rebase, you strip out the cruft commits,
reorder updates, etc, as necessary
3) After the rebase, test the new version. Make sure it compiles and
the new features work correctly. Run any automated tests.
4) Merge the temporary branch into master, and drop the temporary branch:
git checkout master
git merge james_updates_tmp
git branch -d james_updates_tmp
5) Rebase your (original) updates branch onto the updated master:
git checkout james_updates
git rebase master
Now you have a james_updates branch on top of master which only has
your cruft etc which you didn't merge earlier. The already-merged
commits are automatically removed from james_updates during the
rebase.
David.
prev parent reply other threads:[~2008-06-22 7:59 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-21 13:20 avoiding committing personal cruft James Sadler
2008-06-21 15:53 ` David
[not found] ` <e5e204700806211901v17a0450fw56b9db1c8c578dd@mail.gmail.com>
2008-06-22 7:58 ` David [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=18c1e6480806220058u72b1cbc5x9ec737c724258608@mail.gmail.com \
--to=wizzardx@gmail.com \
--cc=freshtonic@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).