diff options
author | Al <80943867+al-ias@users.noreply.github.com> | 2022-07-24 12:28:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-24 12:28:23 +0200 |
commit | 1bd3310bf28a967e3a62248a5f2a7d5ff4515675 (patch) | |
tree | ac5fe8498c215f8c2a28e9ae5278cb1769fd7e9a /git.html.markdown | |
parent | 39e0b12b1545b06c7359b544790e423550b5cf13 (diff) | |
parent | 6be91ac96b852859e124c5b3b830348fd44d4b11 (diff) |
Merge pull request #3 from al-ias/master
Merge master
Diffstat (limited to 'git.html.markdown')
-rw-r--r-- | git.html.markdown | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/git.html.markdown b/git.html.markdown index 474ee25d..0d8e43ec 100644 --- a/git.html.markdown +++ b/git.html.markdown @@ -124,9 +124,12 @@ To configure settings. Whether it be for the repository, the system itself, or global configurations ( global config file is `~/.gitconfig` ). ```bash -# Print & Set Some Basic Config Variables (Global) +# Set & Print Some Basic Config Variables (Global) $ git config --global user.email "MyEmail@Zoho.com" $ git config --global user.name "My Name" + +$ git config --global user.email +$ git config --global user.name ``` [Learn More About git config.](http://git-scm.com/docs/git-config) |