Skip to content

Latest commit

 

History

History
31 lines (14 loc) · 706 Bytes

README.md

File metadata and controls

31 lines (14 loc) · 706 Bytes

Full Stack Open repository

Will update description at a later date.

Git tricks

$ git status

--> reveals the status of files in local folder. When adding a new file, it will be 'untracked'

$ git add .

--> tells git to track a given file. Git does not automatically track a file in the local folder.

--> each time a file is modified, it should be tracked.

$ git commit -m "Here is a description of my commit." -m "Some description"

--> Commits are local.

$ git push

--> Pushes commits to remote repository

$ nvm use 16.13.0

--> Node habitually changes to v17 which gives me issues. I don't know why. This command seems to temporarily change the node version.