iwantcoding
.com
Tutorials
▾
Web Frontend
HTML
CSS
HTML5
CSS3
JavaScript
TypeScript
Sass
React
Vue
Svelte
Tailwind
Backend
Python
PHP
Node.js
Java
Go
Rust
Ruby
C#
Databases
SQL
MySQL
PostgreSQL
MongoDB
Firebase
GraphQL
Redis
Mobile
React Native
Flutter
Swift
Kotlin
Ionic
Cloud & DevOps
AWS
Docker
Kubernetes
CI/CD
Linux/Bash
AI & Data
NumPy/Pandas
Machine Learning
TensorFlow
PyTorch
LangChain
RAG
Cybersecurity
XSS
SQL Injection
CSRF
OWASP Top 10
Cryptography
Ethical Hacking
Tools
Git
DSA
Design Patterns
RegEx
VS Code
Specialty
Game Dev
WordPress
Web3/Solidity
Three.js
Capstone
Enterprise Architecture
HTML
CSS
JAVASCRIPT
SQL
PYTHON
PHP
TYPESCRIPT
REACT
NODEJS
MONGODB
DOCKER
GIT
TAILWIND
GRAPHQL
LINUX-BASH
AWS
KUBERNETES
VUE
SVELTE
SASS
THREEJS
GO
RUST
JAVA
RUBY
CSHARP
WORDPRESS
POSTGRESQL
MYSQL
REDIS
FIREBASE
REACT-NATIVE
FLUTTER
SWIFT
KOTLIN
IONIC
CICD
NUMPY-PANDAS
ML
TENSORFLOW
PYTORCH
LANGCHAIN
XSS
SQLI
CSRF
OWASP
CRYPTO
DSA
DESIGN-PATTERNS
REGEX
VSCODE
GAMEDEV
WEB3
ENTERPRISE
CAPSTONE
ETHICAL-HACKING
🔥 Daily
👥 Rooms
🏆 Top
Log in
Sign up
AI ✨
Git Tutorial
BOSS QUIZ
10 questions · 5 minutes · pass at 70% to clear the track.
05:00
Start
Q1.
Clone an existing repo with…
from Git Intro
git copy
git clone
git pull
git fetch
Q2.
Unstage a file with…
from git add
git unstage
git restore --staged file
git rm
git reset --hard
Q3.
Set upstream the first time with…
from git push
-u origin name
--upstream
--set
--track
Q4.
Edit the latest commit with…
from git commit
git fix
git commit --amend
git redo
git commit -e
Q5.
Git is best described as…
from Git Intro
A CI server
A distributed version control system
A backup tool only
A package manager
Q6.
Stage modified files + commit in one shot via…
from git commit
git commit -a -m "msg"
git push -m "msg"
git all -m "msg"
git stage -m "msg"
Q7.
After resolving conflicts in a merge, you…
from git merge
git add (files) && git commit
git merge --done
git fix
git resolve
Q8.
Delete a merged branch with…
from Branches Overview
git branch -d name
git rm branch name
git remove name
git delete name
Q9.
Stage everything in current dir with…
from git add
git add *
git add .
git stage
git stage all
Q10.
Interactively choose hunks with…
from git add
git add -p
git stage --pick
git add --hunk
git add -i (different)
Submit
Back to Git Tutorial
🏆
Achievement unlocked!