23 lines
410 B
Plaintext
23 lines
410 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
|
|
|