VSCode
📬 Get updates when I publish new content
Choose the topics you're interested in: Tech, Life Management, or Spiritual Growth
https://code.visualstudio.com/
Settings
Path seems like a never-ending struggle. I installed git via the vs-code terminal and still show default MacOS path. Had to find settings in vscode and search for path, found a note stay to edit in settings.json, click on it to get the json file:
{
"git.path": "/opt/homebrew/bin/git"
}
works now; which git shows the right path for homebrew installation.
Struggled to get connected from desktop to web. I committed local changes (git) but didn't publish (push to github).
Workflow
git status
1. Pull (Always Start by Syncing)
git pull
2. Edit (Make Your Changes)
3. Add (Stage the Changes)
git add filename
• Or stage all changes:
git add .
4. Commit (Save Your Changes Locally)
git commit -m "Your message here"
5. Push (Upload to GitHub)
git push
Tips and Tricks
cntrl ` (back tick) to open a terminal