A comprehensive guide to Git fundamentals and workflows
Git is a distributed version control system that tracks changes in source code during software development. It's designed for coordinating work among programmers, but it can be used to track changes in any set of files.
Start with git init
or git clone
Use git add
to stage files
Save changes with git commit
Share changes with git push
/git pull
git checkout -b feature-name
Work on your feature
git merge feature-name
git branch -d feature-name