Code. Money. Travel.
Home

Cara menggunakan GIT dengan Gitlab

Published in Code
January 16, 2022
1 min read
Cara menggunakan GIT dengan Gitlab

1. Login Akun Gitlab

Apabila sudah memiliki akun gitlab bisa login disini https://gitlab.com/users/sign_in, atau apabila belum bisa register telebih dahulu disini https://gitlab.com/users/sign_up.

2. Create New Repository

Klik tombol New Project untuk membuat repository baru. Atau bisa klik disini https://gitlab.com/projects/new.

Create New Repository 1
Create New Repository 1

3. Piliah Create Blank Project

Create New Repository 2
Create New Repository 2

4. Isi Form lalu, Create Project

Create New Repository 3
Create New Repository 3

  • Masukan Project Name
  • Untuk Visibility Level bisa pilih Public atau Private
  • untuk Project Configuration, jangan lupa uncheck Initialize repository with a README.
  • Lalu bisa klik Create Project

Create New Repository 4
Create New Repository 4


5. Setting Username dan Email di terminal

Kembali ke terminal, lalu setting username dan email.

// 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

Opsi ini dilakukan apabila kita sudah memiliki project yang sudah siap untuk di upload ke Remote Repository.

  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 [email protected]:miqbalh94/belajar-git.git

Remote URL with HTTPS
Remote URL with HTTPS

Untuk url remote, bisa di copy disini.

  • Pilih tombol Clone.
  • Copy url dari Clone with HTTPS

  1. Push / Upload file ke remote repository
$ git push -u origin master
  1. Check di website gitlab, 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

Opsi ini dilakukan, apabila kita belum mempunyai project sama sekali, dan baru ingin membuat project tersebut.

  1. Clone atau copy project dari remote repository ke komputer kita.
$ git clone https://gitlab.com/miqbalh94/belajar-git.git

Clone with HTTPS
Clone with HTTPS

Untuk url clone, bisa di copy disini.

  • Pilih tombol Clone.
  • Copy url dari Clone with HTTPS

  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 gitlab, apakah file kita sudah terupload.

Create a new repository
Create a new repository


Tags

#git
Previous Article
Cara menggunakan GIT dengan Github

Topics

Code
Money
Travel

Related Posts

Cara menggunakan GIT dengan Github
January 15, 2022
1 min
© 2023, All Rights Reserved.

Quick Links

Advertise with usAbout UsContact Us

Social Media