All Guides
Git und GitHub Einrichtung
Installieren Sie Git und verwalten Sie Projekte mit GitHub.
Beginner15 Min.
Setup Steps
1. Install Git:
sudo apt install git -y2. Git configuration:
git config --global user.name "Your Name"
git config --global user.email "email@example.com"3. Create a new repository:
mkdir project && cd project
git init4. Basic Git commands:
git add .
git commit -m "Initial commit"
git status
git log --oneline5. Create a repository on GitHub (github.com/new)
6. Add remote and push:
git remote add origin https://github.com/username/project.git
git branch -M main
git push -u origin main7. Connect via SSH key:
ssh-keygen -t ed25519 -C "email@example.com"
cat ~/.ssh/id_ed25519.pub8. Add the copied key to GitHub > Settings > SSH Keys
9. Branch management:
git checkout -b new-feature
git merge new-feature
git branch -d new-feature10. Create a .gitignore file:
node_modules/
.env
.DS_Store
dist/Related Guides
VS Code Einrichtung und Erweiterungen
Installieren Sie VS Code und erweitern Sie es mit Entwickler-Erweiterungen.
Node.js App-Verwaltung mit PM2
Verwalten Sie Ihre Node.js-Apps in der Produktion mit PM2.
GitHub Actions CI/CD Einrichtung
Erstellen Sie eine automatisierte Test-, Build- und Deploy-Pipeline.
Cloudflare DNS und CDN Einrichtung
Fuegen Sie Cloudflare zu Ihrer Website hinzu. DNS, CDN, DDoS-Schutz.