Belajar Git - Part 1 November 07, 2022 Reading time ~1 minute Penggunaan git Get SSH Key to get ssh key in your computer, and put in your github or gitlab ssh key setting. cat ~/.ssh/id_rsa.pub if there is not exist you must generate ssh key in next section Generate RSA Key Just One time for first instalation of git scm, ssh-keygen -t rsa -b 4096 -C "your_email@example.com" Set config global Just One time for first instalation of git scm, git config --global user.name "John Doe" git config --global user.email johndoe@example.com Enabling SSH connections over HTTPS nano ~/.ssh/config Host github.com Hostname ssh.github.com Port 443 User git Host gitlab.com Hostname altssh.gitlab.com User git Port 443 Forking repository and keep update from source repo Please click fork from web interface, after that clone your repo in your desktop. Select SSH in clone tab. git clone git@github.com:youruserrepo/your_repos.git git bash into your repo folder, just one time add upstream from source of fork repo. Use HTTPS in clone tab from source repo. git remote add upstream https://github.com/danigunawan/your_repos.git before pull request and working in your repo, always do git fetch upstream git checkout main git merge upstream/main After that you may pull request. Read More Cara Cloning Git Projet Berdasarkan Group ID Cara Cloning Git Projet Berdasarkan Group ID Continue reading Perbandingan Layanan Cloud Modern Saat Ini (Part 1) Published on July 29, 2023 Materi Persiapan Ujian Sertifikasi Oracle Cloud Infrastructure Architect 2023 Professional (1Z0-997-23) Published on July 29, 2023