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. user_name=$(git config user.name || echo '') &&
  21. user_email=$(git config user.email || echo '') &&
  22. if test -n "$user_name" -a -n "$user_email"; then
  23. echo 'Your commits will record as Author:
  24. '"$user_name <$user_email>"'
  25. ' &&
  26. read -ep 'Is the author name and email address above correct? [Y/n] ' correct &&
  27. if test "$correct" != "n" -a "$correct" != "N"; then
  28. break
  29. fi
  30. fi &&
  31. read -ep 'Enter your full name e.g. "John Doe": ' name &&
  32. read -ep 'Enter your email address e.g. "john@gmail.com": ' email &&
  33. git config user.name "$name" &&
  34. git config user.email "$email"
  35. done