Code. Money. Travel.
Home

Cara menggunakan GIT dengan Github

Published in Code
January 15, 2022
1 min read
Cara menggunakan GIT dengan Github

1. Login Akun Github

Apabila sudah memiliki akun github bisa login disini https://github.com/login, atau apabila belum bisa register telebih dahulu disini https://github.com/signup?source=login.

2. Create New Repository

Klik tombol New pada menu Repositories untuk membuat repository baru. Atau bisa klik disini https://github.com/new.

Create New Repository
Create New Repository

  • Masukan Repository Name
  • Jenis Repository bisa pilih Public atau Private
  • untuk Add a README file, Add .gitignore, dan Choose a license tidak usah di checklist.
  • Lalu bisa klik Create Repository

3. Setting Username dan Email di terminal

// setting username secara global
$ git config --global user.name "Username Anda"

// setting email secara global
$ git config --global user.email [email protected]


// untuk melihat username apakah sudah terset
$ git config user.name

// untuk melihat email apakah sudah terset
$ git config user.email

Push An Existing Repository

untuk yang sudah ada folder / project yang sudah siap untuk diupload.

  1. Inisialisasi Git
$ git init
  1. Pastikan file yang akan kita Upload / akan kita masukan Remote Repository di commit terbelih dahulu.
// untuk memindahkan semua file dari working directory ke staging area
$ git add .

// commit file yang sudah berada di staging area
$ git commit -m "first init"
  1. Mengkoneksikan local repository dan remote repository.
$ git remote add origin https://github.com/miqbalhamdani/Belajar-Git.git
  1. Push / Upload file ke remote repository
$ git push -u origin master
  1. Check di website github, apakah file kita sudah terupload.

Push An Existing Repository - 1
Push An Existing Repository - 1

Push An Existing Repository - 2
Push An Existing Repository - 2



Create a new repository

untuk yang belum memiliki project atau belum membuat folder untuk project.

  1. Clone atau copy project dari remote repository ke komputer kita.
$ git clone https://github.com/miqbalhamdani/Belajar-Git.git
  1. Masuk ke folder yang telah kita clone
$ cd Belajar-Git
  1. Tambahkan beberapa file. Bisa create new file di Visual Studio Code. Atau menggunakan terminal seperti di bawah ini.
$ touch index.html
  1. Pilih file yang akan kita Upload / akan kita masukan Remote Repository, lalu kita commit.
// Pindahkan semua file dari working directory ke staging area
$ git add .

// commit file yang sudah berada di staging area
$ git commit -m "first init"
  1. Push / Upload file ke remote repository
$ git push -u origin master
  1. Check di website github, apakah file kita sudah terupload.

Create a new repository
Create a new repository

source:
https://www.niagahoster.co.id/blog/git-tutorial-dasar/


Tags

#git
Previous Article
Budgeting

Topics

Code
Money
Travel

Related Posts

Cara menggunakan GIT dengan Gitlab
January 16, 2022
1 min
© 2023, All Rights Reserved.

Quick Links

Advertise with usAbout UsContact Us

Social Media