### Set config details ```bash git config --global user.name "John Doe" git config --global user.email "john@example.com" ``` ### See config settings ```bash git config --list ``` ### Add remote ```bash git remote add remote-name https://github.com/user/repo.git ```