Skip to content

Belajar Git, untuk mempermudah proses push ke github!

Notifications You must be signed in to change notification settings

risunCode/RisunGitLearn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

RisunGitLearn

Risun belajar penggunaan git.

Download Git

https://www.git-scm.com/download dw-git

Instalasi

alah next next aja itu.. basic

First thing to setup

Buka Git Bash. Atur Nama dan alamat email.

git config --global user.name "namaKamu"
git config --global user.email [email protected]
git config --global color.ui true

#untuk mengecek perubahan

git config --list

Atur SSH

  • Buka GIT GUI
  • Arahkan ke bagian Help > SSH > Generate Key
  • Masukkan Sandi untuk SSH (lalu copy hasil generated SSH) ssh

Masukkan SSH tadi ke Akun Githubmu

  • Buka Browser
  • Masuk ke Akun Github Mu
  • Tekan gambar profilemu lalu cari pengaturan/settings atau via Link (https://github.com/settings/ssh/new)
  • Lihat bagian SSH & GPG Keys
  • Tekan dan masukkan SSH mu tadi disitu dengan cara pencet "New SSH Key"
  • image
  • Add SSH Key & done!
  • #Sekarang Kamu sudah siap untuk Git

Mengupload projek yang sudah tersedia di github

  • Masuk ke folder lokal di perangkatmu
  • Arahkan ke folder yang menjadi tujuan upload ke github
  • seperti contoh C:\xampp\htdocs\RisunGitLearn
  • Lalu klik kanan di dalam foldernya (tanpa memilih file apapun)
  • Klik Git Bash dowoda

#atur agar menjadi default main

git config --global init.defaultBranch main

Mengupload file lokal ke branch main/master/dll di repositori Github

sesuaikan dengan alamat repositori kamu sendiri

git init
git add .
git branch -M main
git commit -m "first commit"
git remote add origin https://github.com/risunCode/RisunGitLearn.git
  • paksa tulis dengan force
git push -u -f origin main

Bum taraaa file sudah terupload ke github!

ddwd

Mengunduh repositori online ke lokal

  • Masuk ke folder lokal yang menjadi target lokasi download
  • klik kanan di dalam folder (tanpa memilih apapun)
  • Pilih git Bash lalu masukkan command dibawah (sesuaikan dengan repositori target)
git clone https://alamatrepositoritarget.git

image

Membuat Branch baru via Git untuk target upload

  • Koneksikan ke repositori online github mu!
git remote add origin https://github.com/repositorimu.git
  • cmd untuk melihat repositori yang ada
git branch
  • Buat branch baru (sesuaikan nama)
git checkout -b notmain
  • setup branch baru
git add .
  • push ke branch baru (sesuaikan nama)
git push -u origin notmain
  • Untuk berPindah ke branch lain
git checkout nama-branch

Referensi Pembelajaran

About

Belajar Git, untuk mempermudah proses push ke github!

Resources

Stars

Watchers

Forks

Packages

No packages published