Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Unified Diff: git-crup

Issue 1432233002: Delete git-crup command. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git-crup
diff --git a/git-crup b/git-crup
deleted file mode 100755
index b2d1a92bf227afc5aa8afa0016d7a57ea7c89158..0000000000000000000000000000000000000000
--- a/git-crup
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/usr/bin/env bash
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-TOPLEVEL=$(git rev-parse --show-toplevel)
-TOPPERLEVEL=$(dirname $TOPLEVEL)
-
-cat <<EOF
-Sorry `whoami`, but the git-submodule flow has been deprecated in order to
-simplify the plethora of SCM choices, and to pave the way towards a git-only
-chromium development flow.
-
-Please consult https://code.google.com/p/chromium/wiki/UsingGitSubmodules#Convert_from_submodules_to_gclient
-for instructions on how to convert your submodule checkout to gclient.
-
-The simplest chromium and/or blink instructions follow for convenience.
-
-1. Make sure the parent directory of this checkout is empty, besides this repo:
-$ ls $TOPPERLEVEL
-EOF
-ls "$TOPPERLEVEL"
-if [[ "$(ls "$TOPPERLEVEL")" != 'src' ]]
-then
- echo Please move this repo to its own directory before continuing!!!
-fi
-echo
-
-cat <<EOF
-2. Please add a .gclient file to $TOPPERLEVEL/.gclient of the form:
-# ======== .gclient begins =========
-solutions = [{
- 'name': '$(basename "$TOPLEVEL")',
- 'url': 'https://chromium.googlesource.com/chromium/src.git',
- 'managed': False,
- 'deps_file': '.DEPS.git',
- # Uncomment the following if you're doing blink development
- # 'custom_vars': {'webkit_revision': ''},
-}]
-# ======== .gclient ends =========
-
-3. Run \`gclient sync\` to synchronize dependencies in your checkout instead of $(basename "$0")!
-EOF
-
-exit 1
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698