# Git
- A guide to fork & commit to another project
- To squash all commits into one:
git reset --soft HEAD~n && git commit
, wheren
is the number of commits we want to squash.
← Figma JavaScript →
git reset --soft HEAD~n && git commit
, where n
is the number of commits we want to squash.← Figma JavaScript →