setup-user 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. ident="$(git var GIT_AUTHOR_IDENT 2>/dev/null | rev | cut -d' ' -f3- | rev)"
  21. if test -n "$ident"; then
  22. echo 'Your commits will record as Author:
  23. '"$ident"'
  24. ' &&
  25. read -ep 'Is the author name and email address above correct? [Y/n] ' correct &&
  26. if test "$correct" != "n" -a "$correct" != "N"; then
  27. break
  28. fi
  29. fi &&
  30. read -ep 'Enter your full name e.g. "John Doe": ' name &&
  31. read -ep 'Enter your email address e.g. "[email protected]": ' email &&
  32. git config user.name "$name" &&
  33. git config user.email "$email"
  34. done