git

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
git [2021/12/18 17:04] – created admingit [2022/01/26 13:49] (current) 192.168.1.41
Line 1: Line 1:
 ====== Git configuration ====== ====== Git configuration ======
 +===== STONARD =====
 <file> <file>
 $ git config --list|sort $ git config --list|sort
Line 38: Line 39:
 user.name=phlaange user.name=phlaange
  
 +------------------------------------------------------------------------
 $ git config --global --list|sort $ git config --global --list|sort
 auto.crlf=0 auto.crlf=0
Line 53: Line 55:
 user.name=phlaange user.name=phlaange
  
 +$ cat /c/Users/Varimathras/.gitconfig
 +[filter "lfs"]
 +    process = git-lfs filter-process
 +    required = true
 +    clean = git-lfs clean -- %f
 +    smudge = git-lfs smudge -- %f
 +[user]
 +    name = phlaange
 +    email = versions@seanys.com
 +[core]
 +    editor = \"C:\\Program Files\\TextPad 7\\TextPad.exe\" --wait
 +[credential]
 +    helper = manager-core
 +[difftool "sourcetree"]
 +    cmd = '' \"$LOCAL\" \"$REMOTE\"
 +[mergetool "sourcetree"]
 +    cmd = "'' "
 +    trustExitCode = true
 +[auto]
 +    crlf = 0
 +[gui]
 +    recentrepo = E:/Developed/Git/Professional Git
 +
 +------------------------------------------------------------------------
 $ git config --local --list|sort $ git config --local --list|sort
 core.bare=false core.bare=false
Line 63: Line 89:
 gui.wmstate=zoomed gui.wmstate=zoomed
  
 +$ cat /e/Developed/Git/Professional Git/.git/config
 +[core]
 +    repositoryformatversion = 0
 +    filemode = false
 +    bare = false
 +    logallrefupdates = true
 +    symlinks = false
 +    ignorecase = true
 +[gui]
 +    wmstate = zoomed
 +    geometry = 893x435+156+156 175 196
 +
 +------------------------------------------------------------------------
 $ git config --system --list|sort $ git config --system --list|sort
 core.autocrlf=true core.autocrlf=true
Line 103: Line 142:
     defaultBranch = master     defaultBranch = master
  
 +------------------------------------------------------------------------
 $ cat /c/Users/All\ Users/Git/config $ cat /c/Users/All\ Users/Git/config
 [core] [core]
Line 122: Line 162:
 [rebase] [rebase]
         autosquash = true         autosquash = true
- 
-$ cat /e/Developed/Git/Professional Git/.git/config 
-[core] 
-    repositoryformatversion = 0 
-    filemode = false 
-    bare = false 
-    logallrefupdates = true 
-    symlinks = false 
-    ignorecase = true 
-[gui] 
-    wmstate = zoomed 
-    geometry = 893x435+156+156 175 196 
- 
-$ cat /c/Users/Varimathras/.gitconfig 
-[filter "lfs"] 
-    process = git-lfs filter-process 
-    required = true 
-    clean = git-lfs clean -- %f 
-    smudge = git-lfs smudge -- %f 
-[user] 
-    name = phlaange 
-    email = versions@seanys.com 
-[core] 
-    editor = \"C:\\Program Files\\TextPad 7\\TextPad.exe\" --wait 
-[credential] 
-    helper = manager-core 
-[difftool "sourcetree"] 
-    cmd = '' \"$LOCAL\" \"$REMOTE\" 
-[mergetool "sourcetree"] 
-    cmd = "'' " 
-    trustExitCode = true 
-[auto] 
-    crlf = 0 
-[gui] 
-    recentrepo = E:/Developed/Git/Professional Git 
 </file> </file>
 +{{tag>git}}
  • git.1639818299.txt.gz
  • Last modified: 2021/12/18 17:04
  • by admin