Skip to content

Instantly share code, notes, and snippets.

View lreddy563's full-sized avatar
😎
❤️

N Lohidasu Reddy lreddy563

😎
❤️
View GitHub Profile
@lreddy563
lreddy563 / gitcom.md
Created May 1, 2019 10:14 — forked from jednano/gitcom.md
Common git commands in a day-to-day workflow

Git Cheat Sheet

Initial Setup

Create an empty git repo or reinitialize an existing one

$ git init
@lreddy563
lreddy563 / ansible-summary.md
Created January 16, 2019 14:29 — forked from andreicristianpetcu/ansible-summary.md
This is an ANSIBLE Cheat Sheet from Jon Warbrick

An Ansible summary

Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)

Configuration file

intro_configuration.html

First one found from of

@lreddy563
lreddy563 / ansible-github.yml
Created November 29, 2018 11:29 — forked from devynspencer/ansible-github.yml
Example playbook for cloning a private git repository with Ansible.
---
hosts: all
tasks:
- name: add github ssh key
copy: >
src=files/id_rsa.github
dest=/root/.ssh/id_rsa.github
owner=root
group=root