KIP KOE GEIT KOE KIP GEIT KOE en je bakkes is dicht.
- Verify changes:
git diff - Add the file:
git add <filename>, or, if it is the only updated file:git add -u - Commit the file using a descriptive message:
git commit -m "Put your descriptive message here" - Try to keep commits short and clean
To add a new file, git add -u won't work because there is no copy of the file yet in the tree.
Therefore, you need to add the file: git add <filename>
This also works for entire directories.