3 Temmuz 2025 Perşembe

Git kullanımı notları

 Temel ayarlar git kullanıcısı için:

$ git config --global user.name "Remzi AKYÜZ"

$ git config --global user.email "remzi@akyuz.tech"

$ git config --global push.default "simple"

$ git config --global credential.https://git.local.lab.username admin

$ git config --global credential.helper cache --timeout=7200


source /usr/share/git-core/contrib/completion/git-prompt.sh

export GIT_PS1_SHOWDIRTYSTATE=true

export GIT_PS1_SHOWUNTRACKEDFILES=true

export PS1='[\u@\h \W$(declare -F __git_ps1 &>/dev/null && __git_ps1 " (%s)")]\$ '

Git kullanımı notları

 Temel ayarlar git kullanıcısı için: $ git config --global user.name "Remzi AKYÜZ" $ git config --global user.email "remzi@ak...