Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 631 Bytes

File metadata and controls

30 lines (23 loc) · 631 Bytes

git config

How to delete an entry from config

# Important: Find exact level, where it was added --global, --system, --local 
# test before
# should contain this entry 
git config --global --list 

git config --unset --global alias.log

Set entry only for repo

# Eintrag nur für repo setzen
git config user.name "mein-name-nur-fuer-repo" 

Identität setzen

git config --global user.name "Jochen Metzger"
git config --global user.email "[email protected]"
# Du musst in Deinem Repo sein, und für das gilt das 
git config --list
# Checking your config property:
git config user.email