git cheat sheet

Clone a repository git clone <sourse> Clone a specific branch of a repository git clone -b <branch> <sourse> Create a local repository git init See the changed files since the last commit git status Add/remove all the current changes to the next commit git add . Commit the changes git commit -m "message" Give commit extra description git commit -m "message Description" See the changes to the tracked files git diff Compare a file between two branches ...

October 25, 2024 · Mohammad Ali Nilforooshan

git quick start

Create a new repository on the command line. echo "# repository" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/<USER>/<REPONAME>.git git push -u origin main or push an existing repository from the command line. git remote add origin https://github.com/<USER>/<REPONAME>.git git branch -M main git push -u origin main

October 25, 2024 · Mohammad Ali Nilforooshan

Set git configuration variables

git config --global user.name "username" git config --global user.email "user@email.com" git config --global user.password "TOKEN" git config --global core.editor "vim" To see the Git configures do: git config --list Use crediential helper so that Git does not ask for username and password (token) every time. git config --global crediential.helper cache To unset the above (e.g., using a new token) do: git config --global --unset crediential.helper

October 25, 2024 · Mohammad Ali Nilforooshan