Skip to content

Instantly share code, notes, and snippets.

@wayanjimmy
Last active July 28, 2018 00:20
Show Gist options
  • Save wayanjimmy/e6a198e0c4c73518ed5dfa324210c9d1 to your computer and use it in GitHub Desktop.
Save wayanjimmy/e6a198e0c4c73518ed5dfa324210c9d1 to your computer and use it in GitHub Desktop.
Workshop Dev Circle Bali - Coding Fundamental with Javascript

Git

Git adalah salah satu VCS (Version Control System)

  • Mengatur versi source code
  • Menambahkan checkpoint
  • Git bekerja secara local

Instalasi

Windows

Download Git

Linux

apt-get install git

MacOS

brew install git

Perintah dasar git

git init
git status
git add <file>
git add .
git commit -m "memperbaiki bug"
git log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment