Skip to content

Commit

Permalink
swap name and email
Browse files Browse the repository at this point in the history
  • Loading branch information
ankudinov committed May 5, 2024
1 parent 686cdba commit bac060e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ if ${GIT_INIT}; then
cd ${CONTAINERWSF}
git init
git config --global --add safe.directory ${PWD}
if [ -z "$(git config user.name)" ]; then git config user.email "[email protected]"; fi
if [ -z "$(git config user.email)" ]; then git config user.name "Lab User"; fi
if [ -z "$(git config user.name)" ]; then git config user.name "Lab User"; fi
if [ -z "$(git config user.email)" ]; then git config user.email [email protected]; fi
git add .
git commit -m "git init"
fi

0 comments on commit bac060e

Please sign in to comment.