* Best Way to Submit a Patch
@ 2008-12-14 15:57 Ian Barton
2008-12-15 6:02 ` Carsten Dominik
0 siblings, 1 reply; 4+ messages in thread
From: Ian Barton @ 2008-12-14 15:57 UTC (permalink / raw)
To: emacs-orgmode
I would like to submit some patches for the documentation. Whilst I
understand how to make a patch file, what should I be patching against?
I am running a clone of the git repo, so presume I can somehow use git
to create patches. Can someone point me to the documentation on how to
get started?
I guess my first contribution should be "How to submit a patch" :)
Ian.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Best Way to Submit a Patch
2008-12-14 15:57 Best Way to Submit a Patch Ian Barton
@ 2008-12-15 6:02 ` Carsten Dominik
2008-12-15 10:15 ` Ian Barton
0 siblings, 1 reply; 4+ messages in thread
From: Carsten Dominik @ 2008-12-15 6:02 UTC (permalink / raw)
To: Ian Barton; +Cc: emacs-orgmode
Hi Ian,
there is lots of GIT documentation on the web. Here is a short way to
do what you want.
1. get the latest changes
git pull
2. create a branch for you to do your changes
git checkout -b my-doc-fixed
3. Edit the file you want to change
$ emacs ....
$ emacs ....
4. Commit the changes when you feel like it
git add doc/org.texi
git commit
5. Create a patch
git diff master > send-to-carsten.patch
6. Go back t the master branch for normal use of Org-mode.
Do this only after committing all changes.
git checkout master
This all works fine when you don't pull new changes while
working on your patch. If Org changes while you do your work,
you can do this:
- commit your changes as described above.
- switch back to master
git checkout master
- get new changes
git pull
- return to your branch
git checkout my-doc-fixes
- make sure your changes are made relative to the current, new master:
git rebase master
- continue working on your patches.
The only problem here is that git rebase can fail if there is overlap,
so my recommendation for he beginner is to just use the workflow
shown above.
- Carsten
P.S. I am *not* a GIT guru, I hope others will correct me if anything
should be done differently.
On Dec 14, 2008, at 4:57 PM, Ian Barton wrote:
> I would like to submit some patches for the documentation. Whilst I
> understand how to make a patch file, what should I be patching
> against? I am running a clone of the git repo, so presume I can
> somehow use git to create patches. Can someone point me to the
> documentation on how to get started?
>
> I guess my first contribution should be "How to submit a patch" :)
>
> Ian.
>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Best Way to Submit a Patch
2008-12-15 6:02 ` Carsten Dominik
@ 2008-12-15 10:15 ` Ian Barton
2008-12-16 8:47 ` Jeff Mickey
0 siblings, 1 reply; 4+ messages in thread
From: Ian Barton @ 2008-12-15 10:15 UTC (permalink / raw)
To: Carsten Dominik; +Cc: emacs-orgmode
> there is lots of GIT documentation on the web. Here is a short way to
> do what you want.
>
>
Thanks Carsten. You are right, there is lots of stuff about git.
However, this makes it hard to find the relevant bits. Still I shouldn't
complain about something having too much documentation:)
I'll use your first method and put together some patches over the
Christmas period.
Best wishes,
Ian.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Best Way to Submit a Patch
2008-12-15 10:15 ` Ian Barton
@ 2008-12-16 8:47 ` Jeff Mickey
0 siblings, 0 replies; 4+ messages in thread
From: Jeff Mickey @ 2008-12-16 8:47 UTC (permalink / raw)
To: Ian Barton; +Cc: emacs-orgmode
I just wanted to make the addition that for emailing patches around,
git has a lot of decent tools.
`git-format-patch origin` will generate patch files for all commits
that aren't in origin yet... it will also give you the commit
messages/diffstats/etc in the patches.[1]
`git-send-email <patch files>` will send the email off for you with
the patches included. This is best to set up with git-config for repo
specific settings.[2]
And to Carsten, when you receive patches you want to check into your
git branch, use git-am on the emails.[3]
// jeff
[1]: http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html
[2]: http://www.kernel.org/pub/software/scm/git/docs/git-send-email.html
[3]: http://www.kernel.org/pub/software/scm/git/docs/git-am.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-12-16 8:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-14 15:57 Best Way to Submit a Patch Ian Barton
2008-12-15 6:02 ` Carsten Dominik
2008-12-15 10:15 ` Ian Barton
2008-12-16 8:47 ` Jeff Mickey
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.