You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ls -al ~/.ssh // Lists the files in your .ssh directory, if they exist
ssh-keygen -t rsa -C "your_email@example.com" // Creates a new ssh key, using the provided email as a label and Enter file in which to save the key (/home/you/.ssh/id_rsa):
eval "$(ssh-agent -s)" // start the ssh-agent in the background
ssh-add ~/.ssh/id_rsa
cat ~/.ssh/id_rsa.pub // read public key and pair to github & paste into github sshkey
ssh -T git@github.com // verify pairing github n ur device
setup
git init // Inisialisasi repositori Git baru
git config --global user.name "Your Name" // Setel nama pengguna global
git config --global user.email "your.email@example.com" // Setel email pengguna global
git add . // Tambahkan semua perubahan ke staging
git commit -m "Initial commit" // Commit perubahan dengan pesan