Skip to content

Instantly share code, notes, and snippets.

Avatar
💻
trying to exit vim

rajat mehndiratta rajatscode

💻
trying to exit vim
View GitHub Profile
@HarshadRanganathan
HarshadRanganathan / .gitconfig
Created March 20, 2019 15:27
.gitconfig aliases
View .gitconfig
[alias]
##
# One letter alias for our most frequent commands.
#
# Guidelines: these aliases do not use options, because we want
# these aliases to be easy to compose and use in many ways.
##
a = add
@alexpchin
alexpchin / Setting_upa_new_repo.md
Last active September 23, 2023 18:32
Create a new repository on the command line
View Setting_upa_new_repo.md

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

@jexchan
jexchan / multiple_ssh_setting.md
Created April 10, 2012 15:00
Multiple SSH keys for different github accounts
View multiple_ssh_setting.md