- Git and
- GitHub account and
- Python and Visual Studio Code or
- R and RStudio or
- JupyterLab
- Download Git for Windows from https://git-scm.com/install/windows
- Install Git
- Configure local Git as follows
git config --global
- Install Git from Xcode through command line
xcode-select --install - or intall GitHub Desktop
- Configure local Git as follows
git config --global
- Create a personal, public GitHub repo with README
- Clone the GitHub repo to your local drive
- Change directory to the downloaded repo (folder)
- Open REAME.md (text editor, VSCode, etc.)
- Edit REAME.md
- Save REAME.md
- Stage REAME.md (everything with .)
git add . - Commit the change
git commit -m "my first change" - Push to the GitHub repo
git push