Postingan lainnya
Buku Ini Koding!
Baru!
Buku ini akan jadi teman perjalanan kamu belajar sampai dapat kerjaan di dunia programming!
Tanya Git
ada yang bisa bantu, ini pas mau git commit -m "bla bla" muncul error spt di bawah..
samuel@rootz:/opt/belajargit$ git commit -m "iya baru saya hapus"
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got 'samuel@rootz.(none)')
0
5 Jawaban:
Coba cek konfigurasi git-nya
$ git config --global -l
0
sudah mas, spt ini jadi nya samuel@rootz:/opt/belajargit$ git config --global -l samuel.rootz=samuel
0
Kayaknya belum diset. Jalanin ini di shell. Isi sesuai akun git agan.
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
0