|
You are here |
claytonerrington.com | ||
| | | | |
sookocheff.com
|
|
| | | | | This is something I often do but rarely remember the steps for. This post is intended to serve as a reminder for me and anyone else having the same question: how to add an upstream remote git repository. Start by forking the repository you are contributing to and cloning that repository to your local file system. In this example, we will use the Elasticsearch repository and assume you have cloned it locally. | |
| | | | |
blog.danskingdom.com
|
|
| | | | | Developers often have tens or hundreds of Git repositories on their machines. When we are done with a project, we often forget to clean up the repository, leaving temporary files like build artifacts, logs, packages, modules, and other files taking up valuable disk space. | |
| | | | |
ericlathrop.com
|
|
| | | | | Sometimes you're somewhere deep inside your git repo in bash, and you just want to pop back up to the root folder. It can be annoying to figure out how many dots you need in something like cd ../../... I made a small bash function you can use to just type gr to change to the git root: | |
| | | | |
blog.chand1012.dev
|
|
| | | In this tutorial, we will be setting up a Flask server using Gunicorn and NGINX on Ubuntu 18.04 LTS. Requirements Any system running Ubuntu 18.04 LTS with SSH enabled. An SSH client. Installing After connecting via SSH to your server as root, run the following commands to install the required programs: apt update apt upgrade -y apt install nginx python3 python3-pip python3-venv This will install Python, NGINX, and the virtual environment needed to run the app. | ||