Complete Setup Clone Private Github on 2024
so, Github in this time just support SSH protocol for clone private Repository, the first step in your local machine who wants to clone running this command to make your…
Danang Setya Pramana - Working Memory
This is my working memory when i forgot some command and some code for my work
so, Github in this time just support SSH protocol for clone private Repository, the first step in your local machine who wants to clone running this command to make your…
Untuk berhenti melacak file, kita harus menghapusnya dari indeks: git rm --cached <file> Untuk menghapus folder dan semua file dalam folder secara rekursif: git rm -r --cached <folder> Penghapusan file…
git config --global user.email email@saya.com ssh-keygen -t rsa -C "email@saya.com" setelah menggenerate ssh key ,kemudian copy semua isi SSH key dan tambahkan di GitHub , pada contoh biasanya ada di…
git restore di gunakan untuk mengembalikan status perubahan, jika ingin mengembalikan status perubahan yg sudah masuk ke stagging area bisa menggunakan tambahan perintah --stage di git restore menjadi git restore…
cara membuat branch/cabang di git git branch namaCabang cara merubah nama git yg aktif git branch -M namaBaru cara menghapus cabang git branch --delete namaCabang cara pindah cabang git branch…