okogikam

back

git command

git install

sudo dnf install git

git setting user

git config --global user.email "you@example.com"
git config --global user.name "Your Name"

git Clone

sudo git clone <link> <folder>

git commit

git commit -m "commit message"

back