| | | | | linguist.page@gmail.com

Initialize a git repository

Type here
git init

Check the status of your git repository

Type here
git status

Stage all changes for commit

Type here
git add .

Commit staged changes with a message

Type here
git commit -m "add arabic tokenizer script"

View commit history

Type here
git log --oneline

See what changed in a file since last commit

Type here
git diff filename.py

Clone a repository

Type here
git clone https://github.com/user/repo.git

Push changes to remote

Type here
git push origin main

Pull latest changes from remote

Type here
git pull