diff --git a/src/commands.md b/src/commands.md new file mode 100644 index 0000000..dc74206 --- /dev/null +++ b/src/commands.md @@ -0,0 +1,33 @@ +Git commands I forget +-------------------------- + +## Init + +### Add username and email + +#### To local - +```shell +git config --local user.name +git config --local user.email +``` + +#### To global - +```shell +git config --global user.name +git config --global user.email +``` + +#### Folder-specific at global level - + + +## Repo + +## Commit + +## Branch + +## Stash + +## Ignore and keep + +## Other similar websites and inspirations \ No newline at end of file