Files
CS50---Harvard/note.txt
T
2026-06-01 13:15:48 +00:00

26 lines
491 B
Plaintext

# Check Code Server Status
sudo systemctl status code-server@$USER
# Start the Code Server
sudo systemctl start code-server@$USER
# Git - Cheat Sheet
// First Set the Username and Email
git config --global user.name "Hayet"
git config --global user.email "your_email@example.com"
//
git status
git add.
git commit -m "Happy About the progress"
// Ignore a specific File
vi .gitignore
- libcs50/
- a.out
// Memory Check
valgrind is an arcane software often useful for testing memory.