setup-user 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #!/usr/bin/env bash
  2. #=============================================================================
  3. # Copyright 2010-2012 Kitware, Inc.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #=============================================================================
  17. # Run this script to configure Git user info in this repository.
  18. # Project configuration instructions: NONE
  19. for (( ; ; )); do
  20. if type -p rev >/dev/null && type -p cut >/dev/null; then
  21. ident="$(git var GIT_AUTHOR_IDENT 2>/dev/null | rev | cut -d' ' -f3- | rev)"
  22. elif user_name=$(git config --get user.name) &&
  23. user_email=$(git config --get user.email); then
  24. ident="$user_name <$user_email>"
  25. else
  26. ident=""
  27. fi
  28. if test -n "$ident"; then
  29. echo 'Your commits will record as Author:
  30. '"$ident"'
  31. ' &&
  32. read -ep 'Is the author name and email address above correct? [Y/n] ' correct &&
  33. if test "$correct" != "n" -a "$correct" != "N"; then
  34. break
  35. fi
  36. fi &&
  37. read -ep 'Enter your full name e.g. "John Doe": ' name &&
  38. read -ep 'Enter your email address e.g. "[email protected]": ' email &&
  39. git config user.name "$name" &&
  40. git config user.email "$email"
  41. done