Skip to content

Instantly share code, notes, and snippets.

@Gimpy3887
Gimpy3887 / crontab.md
Last active January 12, 2025 01:54
Basics of crontab and things to remember.

Basic crontab Commands

crontab -e Edit crontab file, or create one if it doesn’t already exist.

crontab -l crontab list of cronjobs , display crontab file contents.

crontab -r Remove your crontab file.

Understanding Crontab Timing

I found this visual from a website.

@Gimpy3887
Gimpy3887 / github_notes.md
Last active January 4, 2025 01:24
Notes on the essentials of github.

Configuring Credentials

git config --global --get user.email retrieves the user's global e-mail, remove global keyword for local retrieval. git config --global --get user.name retrieves the user's global username, remove global keyword for local retrieval.

Configuring with Multiple Accounts

Change to the second accounts enough before doing anything and then things fall into place with GCM.

git config user.name "Your Second Account Name"

git config user.email "[email protected]"