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

Unified Diff: utils/GetRepositoryPath

Issue 330513004: GetRepositoryPath now supports git alternates (Closed) Base URL: /usr/local/google/home/dyen/base/nacl/native_client/toolchain_build/git_cache/chromium.googlesource.com-native_client-pnacl--llvm@master
Patch Set: Echo error to stderr Created 6 years, 6 months 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: utils/GetRepositoryPath
diff --git a/utils/GetRepositoryPath b/utils/GetRepositoryPath
index 2d1122e4bc4fad30cc8da658472b0e817a703716..80992d83e849499e02fb57da80678658da9142d3 100755
--- a/utils/GetRepositoryPath
+++ b/utils/GetRepositoryPath
@@ -19,8 +19,12 @@ if [ -d .svn ]; then
elif [ -f .git/svn/.metadata ]; then
git svn info | grep 'URL:' | cut -d: -f2-
elif [ -d .git ]; then
+ if [ -f .git/objects/info/alternates ]; then
+ cd `cat .git/objects/info/alternates`
+ fi
git remote -v | grep 'fetch' | awk '{ print $2 }' | head -n1
else
+ echo "Invalid Repository Path: $1" 1>&2
exit 1;
fi
« 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