[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Two git-cl questions
From: |
Thomas Morley |
Subject: |
Re: Two git-cl questions |
Date: |
Mon, 21 Dec 2015 22:17:32 +0100 |
2015-12-21 20:14 GMT+01:00 Simon Albrecht <address@hidden>:
> Hello,
>
> after a long time I’ve now tried and uploaded a patch again. Two questions
> on the git cl process:
> What exact value should I use for ‘Allura server’? I didn’t get that right.
git config -e
for me returns:
...
[allura]
tracker = https://sourceforge.net/p/testlilyissues/issues/
token = ...
...
> And, please, is there a way to upload a patch and edit the message without
> vi? I have absolutely no experience with vi and it drove me mad.
>From CG:
git config --global core.editor nano
and/or
export VISUAL=nano
export EDITOR=nano
to use nano
In my .gitconfig I can see:
...
[core]
editor = nano
HTH,
Harm