Skip to content

Add the 'script -> builtin' project #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 24, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions SoC-2015-Ideas.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,15 @@ a commit.
One difficulty with this project is to identify uncontroversial cases
(where Git should merge without complaining) and all the possible
corner-cases.

### Convert scripts to builtins

Many components of Git are still in the form of shell and Perl scripts.
While this is an excellent choice as long as the functionality is
improved, it causes problems in production code – in particular on
multiple platforms, e.g. Windows (think: POSIX-to-Windows path
conversion issues).

The idea of this project is to dive into the Git source code and
convert, say, `git-add--interactive.perl` and/or `git stash` into
proper C code, making it a so-called "built-in".