Version control, collaboration, and open source contribution. All my projects are version-controlled with Git and hosted on GitHub.
Replace the GitHub links with your actual repository URLs
Full source code for the 2D platformer game with proper commit history and README.
Source code for the 3D adventure game including Blender asset files and Godot project.
Source code for this portfolio website โ open source and available for reference.
# Daily Git workflow git init # Start a new repo git add . # Stage all changes git commit -m "feat: message" # Commit with message git push origin main # Push to GitHub # Branching workflow git checkout -b feature/name # Create & switch branch git merge feature/name # Merge branch git branch -d feature/name # Delete branch # When things go wrong git status # Check what changed git log --oneline # See commit history git diff # See exact changes git stash # Temporarily save work