Home | History | Annotate | Download | only in Scripts

Lines Matching refs:git

48 #   Handles git-diff patches (without binary changes) created at the top-level directory
58 # Handle git-diff patches with binary delta
109 '.git' => 1,
135 # How do we handle Git patches applied to an SVN checkout here?
177 # Git will ignore the add, but re-adding large directories can be sloooow.
312 # Git rename.
373 # This could be made into a more general "status" call, except svn and git
382 my $gitOutput = `git diff-index --name-status HEAD -- $path`;
388 # Return whether the file at the given path is known to Git.
393 # "error: pathspec 'test.png' did not match any file(s) known to git.
394 # Did you forget to 'git add'?"
399 `git ls-files --error-unmatch -- $path`;
428 system("git", "add", $destination) == 0 or die "Failed to git add $destination.";
438 system("git", "add", $path) == 0 or die "Failed to git add $path.";
456 # Git removes a directory if it becomes empty when the last file it contains is
457 # removed by `git rm`. In svn-apply this can happen when a directory is being
459 # before attemping to remove the directory itself. In this case, Git will have
460 # already deleted the directory and `git rm` would exit with an error claiming
462 system("git", "rm", "--force", "--ignore-unmatch", $path) == 0 or die "Failed to git rm --force --ignore-unmatch $path.";