On Thu, 3 May 2018, Sven Schreiber wrote:
Am 29.04.2018 um 20:42 schrieb Allin Cottrell:
> On Tue, 24 Apr 2018, Sven Schreiber wrote:
>
>> (When will I ever become comfortable with git, this would be an easy
>> fix...?)
>
> Following up on the second point in Sven's posting. Git is really pretty
> simple. Here's a capsule guide for anyone wanting to modify a single file.
Thanks for this git-for-dummies guide.
> 5. Then push your modification to sourceforge:
>
> git push
And what should be done to make a proposed patch known but not apply /push it
right away? Something like: check if this would be OK.
If I'm understanding you right, that would be a case for
git diff > trythis.diff
and emailing the diff to people to try out. A more complicated
approach would be to create an experimental branch in the git
repository, switch to the new branch, and commit your changes on that.
Then you could tell people to try out your branch.
I can't say that I'm entirely comfortable with the latter myself,
though it's standard git procedure and I should get to know it.
There's scope for things going nastily wrong if you don't really know
what you're doing.
Allin