Skip to content

Instantly share code, notes, and snippets.

View ShivG9's full-sized avatar
💭
Never judge people by their appearance

shiv ShivG9

💭
Never judge people by their appearance
  • India
View GitHub Profile
@ShivG9
ShivG9 / git-common-command.md
Created June 17, 2021 12:25 — forked from delwar2016/git-common-command.md
Git common command ...
  1. For creating new branch

git checkout -b [new-branch-name]

Example: we want to create new branch named: new-branch-1

git checkout -b new-branch-1

  1. For swicthing existing branch
@ShivG9
ShivG9 / Makefile
Created March 19, 2021 18:01 — forked from PhirePhly/Makefile
A crazy simple SMTP server, for educational purposes only.
default:
cc ccsmtp.c -o ccsmtpd -lpthread