Skip to content

Instantly share code, notes, and snippets.

View mageshk98's full-sized avatar
✍️
Developing my knowledge

Magesh_Kumar mageshk98

✍️
Developing my knowledge
View GitHub Profile
@mageshk98
mageshk98 / Setting_upa_new_repo.md
Created March 31, 2021 10:08 — forked from alexpchin/Setting_upa_new_repo.md
Create a new repository on the command line

Setting up a new Git Repo

##Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"

git remote add origin git@github.com:alexpchin/.git

@mageshk98
mageshk98 / NodeHTTPs1.js
Created August 26, 2019 05:53 — forked from n1lesh/NodeHTTPs1.js
HTTPs Server with Node.js and Express
var express = require('express');
var app = express();
var fs = require('fs');