Skip to content

Instantly share code, notes, and snippets.

View bianpratama's full-sized avatar
👊
Liberating

Bian Pratama bianpratama

👊
Liberating
View GitHub Profile
@bianpratama
bianpratama / structure.json
Last active June 7, 2020 10:22
Organisme
{
"_id": "xxx",
"sections": [
{
"_id": "xxx",
"name": "Main",
"handle": "main",
"cells": [
"xxx",
"xxx",
@bianpratama
bianpratama / git-commands.md
Created August 2, 2018 09:21
A list of commonly used Git commands

Getting & Creating Projects

Command Description
git init Initialize a local Git repository
git clone ssh://git@github.com/[username]/[repository-name].git Create a local copy of a remote repository

Basic Snapshotting

| Command | Description |

First commit any outstanding code changes, and then, run this command:

git rm -r --cached .

This removes any changed files from the index(staging area), then just run:

git add .