Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ToshY's full-sized avatar
🤔
I don't know everything. I just know what I know.

ToshY

🤔
I don't know everything. I just know what I know.
View GitHub Profile
@ToshY
ToshY / Dockerfile
Created September 17, 2022 17:58 — forked from rhamedy/Dockerfile
Sample Flask App - Ping Service
FROM python:3.8-slim-buster
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT [ "python" ]
CMD [ "app.py" ]
@ToshY
ToshY / _README.md
Created August 25, 2022 12:51 — forked from mob-sakai/_README.md
Run shell script on gist

Run shell script on gist

Shells that support process substitution such as bash and zsh allow to run shell script on gist as follows.

# With curl:
bash <(curl -sL ${GIST_URL}) args...

# With wget:
@ToshY
ToshY / how-to-squash-commits-in-git.md
Created June 8, 2022 19:57 — forked from patik/how-to-squash-commits-in-git.md
How to squash commits in git

Squashing Git Commits

The easy and flexible way

This method avoids merge conflicts if you have periodically pulled master into your branch. It also gives you the opportunity to squash into more than 1 commit, or to re-arrange your code into completely different commits (e.g. if you ended up working on three different features but the commits were not consecutive).

Note: You cannot use this method if you intend to open a pull request to merge your feature branch. This method requires committing directly to master.

Switch to the master branch and make sure you are up to date: