Blog | falk-m.de
Like other developers, I read articles, test new features, analyze code from others and so on.
Also, I have some interesting code snippets used in projects, if I need them, I always search in old projects.
This blog is my central place now, to collect interesting code snippets, features, etc. |
RSS Feed
git commands i did not know
from falk-m.de
· 2025-03-11
GIT
I read about some interesting git commands that I don't know.
Local test environment
For testing I like to use a local 'remote' repository
create a directory 'remote-repo'
navigate on the comma...
require git repos with composer
from falk-m.de
· 2025-03-04
GITPHP
As a PHP developer, you will certainly also love composer to manage dependencies.
Sometimes I need another repo in a project. There is an easy way to use other repos without a registration of them ...
Links and stuff of the week
from falk-m.de
· 2025-01-16
OtherGITJS
Links
lit.dev: JS web components lib
subfinder: subdomain enumeration
gobuster: directory enumeration
pa11y: open source tools to help designers and developers make their web pages more accessible...
summarize git commits
from falk-m.de
· 2024-10-23
git
In some cases there is a feature branch with many commits and you want to replace all this small commits with one big commit.
1. check if everithing is committed.
You have to have no local changes....
Git Flow
from falk-m.de
· 2024-10-22
git
One of my topics today was git workflows.
I read something about git flow and the github flow.
In the past I always work with a develop and a master brunch.
After I read about github flow, I was wo...