Skip to content

Instantly share code, notes, and snippets.

View tekpriest's full-sized avatar
💭
Breathing

Asaju Enitan Michael tekpriest

💭
Breathing
View GitHub Profile
@tekpriest
tekpriest / configuring_github_on_your_dev_environment_part_one.md
Last active September 1, 2021 10:01
Configuring Github on your Dev Environment Part One

Configuring Github on your Dev Environment Part One

Terms $ means running the command as a normal user but make sure to remote it from your command as it already exists on your terminal

Setup

The first step in setting up git on your dev environment is installing the git to your environment. Although you can use Git with the web version with https://github.com, most of the time you will be interacting with Github from within your dev environment using either Terminal and/or applications. First go to https://git-scm.com/ and install for your OS. For Windows user, using the installer will also install the git bash application which you can use to run git commands.
Linux users will have to download for their distribution https://git-scm.com/download/linux

@tekpriest
tekpriest / .editorconfig
Last active August 12, 2021 21:35
My Development Environment
root = true
[*]
indent_style = space
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
curly_bracket_next_line = false
spaces_around_operators = true
indent_size = 2