* [GSoC] Introduction and Project Discussion
@ 2016-03-19 17:36 Chirayu Desai
2016-03-20 12:55 ` Thomas Gummerer
2016-03-20 15:55 ` Lars Schneider
0 siblings, 2 replies; 3+ messages in thread
From: Chirayu Desai @ 2016-03-19 17:36 UTC (permalink / raw)
To: git
Hi,
I am a first year computer engineering student from India, studying at
the Silver Oak College of Engineering and Technology,
I had already put part of this in "[PATCH/GSoC] pull: implement
--[no-]autostash for usage when rebasing", but at that time I didn't
notice that another student was already working on the same change,
and I would like to apologise for that, it was totally unintentional.
I have since picked another microproject, "Make “git tag --contains
<id>” less chatty if is invalid", and after looking at the code, it
would have the same effect for any command with has a "--with" or
"--contains" option, which currently are 'tag', 'branch', and
'for-each-ref'.
I have worked on OSS in the past (and am currently semi-active as
well, working as a device maintainer with CyanogenMod, an android
distribution)
I would like to work on "Git remote whitelist/blacklist". The current
example on the ideas page [1] looks like something that wouldn't be
too much trouble to implement. Still need to dig a bit more on that.
I also saw Thomas Gummerer's idea on the list [2], seems like a reflog
on steroids?
I still don't understand the entirety of that, so some clarity on that
would be nice.
It also seems a bit complex
Apart from this, I was also interested in the "git config --unset
improvement" idea, as currently something as basic like
`git config --global foo.bar 1 &&
git config --global --unset foo.bar`
leaves a section [foo] in the config.
I would like to try to solve this in some way without having to
rewrite the parser, but if that can't be done easily then I'm open to
doing it any other way as well.
So, to sum it up,
I would like to work on "Git remote whitelist/blacklist", and if the
mentors deem it to not take too much time / not be too hard of a task,
I could also try to look at the configuration parser.
Thanks,
Chirayu Desai
[1]: http://git.github.io/SoC-2016-Ideas/
[2]: http://article.gmane.org/gmane.comp.version-control.git/286708
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [GSoC] Introduction and Project Discussion
2016-03-19 17:36 [GSoC] Introduction and Project Discussion Chirayu Desai
@ 2016-03-20 12:55 ` Thomas Gummerer
2016-03-20 15:55 ` Lars Schneider
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Gummerer @ 2016-03-20 12:55 UTC (permalink / raw)
To: Chirayu Desai; +Cc: git
Hi,
On 03/19, Chirayu Desai wrote:
> Hi,
>
> I am a first year computer engineering student from India, studying at
> the Silver Oak College of Engineering and Technology,
> I had already put part of this in "[PATCH/GSoC] pull: implement
> --[no-]autostash for usage when rebasing", but at that time I didn't
> notice that another student was already working on the same change,
> and I would like to apologise for that, it was totally unintentional.
>
> I have since picked another microproject, "Make “git tag --contains
> <id>” less chatty if is invalid", and after looking at the code, it
> would have the same effect for any command with has a "--with" or
> "--contains" option, which currently are 'tag', 'branch', and
> 'for-each-ref'.
>
> I have worked on OSS in the past (and am currently semi-active as
> well, working as a device maintainer with CyanogenMod, an android
> distribution)
>
> I would like to work on "Git remote whitelist/blacklist". The current
> example on the ideas page [1] looks like something that wouldn't be
> too much trouble to implement. Still need to dig a bit more on that.
>
> I also saw Thomas Gummerer's idea on the list [2], seems like a reflog
> on steroids?
> I still don't understand the entirety of that, so some clarity on that
> would be nice.
> It also seems a bit complex
I can't say much about the other projects you mentioned, but my
proposal is too complex for a GSoC project. I wrote the idea down to
convince myself whether it would be okay or too complex for a GSoC
project, but came to the conclusion that it is too complex. I just
posted it to the list since I had written it down anyway, in case
someone was interested. Sorry for the confusion.
> Apart from this, I was also interested in the "git config --unset
> improvement" idea, as currently something as basic like
> `git config --global foo.bar 1 &&
> git config --global --unset foo.bar`
> leaves a section [foo] in the config.
> I would like to try to solve this in some way without having to
> rewrite the parser, but if that can't be done easily then I'm open to
> doing it any other way as well.
>
> So, to sum it up,
> I would like to work on "Git remote whitelist/blacklist", and if the
> mentors deem it to not take too much time / not be too hard of a task,
> I could also try to look at the configuration parser.
>
> Thanks,
> Chirayu Desai
>
> [1]: http://git.github.io/SoC-2016-Ideas/
> [2]: http://article.gmane.org/gmane.comp.version-control.git/286708
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Thomas
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [GSoC] Introduction and Project Discussion
2016-03-19 17:36 [GSoC] Introduction and Project Discussion Chirayu Desai
2016-03-20 12:55 ` Thomas Gummerer
@ 2016-03-20 15:55 ` Lars Schneider
1 sibling, 0 replies; 3+ messages in thread
From: Lars Schneider @ 2016-03-20 15:55 UTC (permalink / raw)
To: Chirayu Desai; +Cc: git
On 19 Mar 2016, at 18:36, Chirayu Desai <chirayudesai1@gmail.com> wrote:
> Hi,
>
> I am a first year computer engineering student from India, studying at
> the Silver Oak College of Engineering and Technology,
> I had already put part of this in "[PATCH/GSoC] pull: implement
> --[no-]autostash for usage when rebasing", but at that time I didn't
> notice that another student was already working on the same change,
> and I would like to apologise for that, it was totally unintentional.
>
> I have since picked another microproject, "Make “git tag --contains
> <id>” less chatty if is invalid", and after looking at the code, it
> would have the same effect for any command with has a "--with" or
> "--contains" option, which currently are 'tag', 'branch', and
> 'for-each-ref'.
>
> I have worked on OSS in the past (and am currently semi-active as
> well, working as a device maintainer with CyanogenMod, an android
> distribution)
>
> I would like to work on "Git remote whitelist/blacklist". The current
> example on the ideas page [1] looks like something that wouldn't be
> too much trouble to implement. Still need to dig a bit more on that.
That sounds great. I consider the posted idea as just something to get
you started. If you see ways to improve the idea then I would be super
interested. E.g. we might need a mechanism for exceptions (either
permanently in the config or via command line flag).
- Lars
>
> I also saw Thomas Gummerer's idea on the list [2], seems like a reflog
> on steroids?
> I still don't understand the entirety of that, so some clarity on that
> would be nice.
> It also seems a bit complex
>
> Apart from this, I was also interested in the "git config --unset
> improvement" idea, as currently something as basic like
> `git config --global foo.bar 1 &&
> git config --global --unset foo.bar`
> leaves a section [foo] in the config.
> I would like to try to solve this in some way without having to
> rewrite the parser, but if that can't be done easily then I'm open to
> doing it any other way as well.
>
> So, to sum it up,
> I would like to work on "Git remote whitelist/blacklist", and if the
> mentors deem it to not take too much time / not be too hard of a task,
> I could also try to look at the configuration parser.
>
> Thanks,
> Chirayu Desai
>
> [1]: http://git.github.io/SoC-2016-Ideas/
> [2]: http://article.gmane.org/gmane.comp.version-control.git/286708
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-03-20 15:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-19 17:36 [GSoC] Introduction and Project Discussion Chirayu Desai
2016-03-20 12:55 ` Thomas Gummerer
2016-03-20 15:55 ` Lars Schneider
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).