A full new Github repo in Rstudio

Create Git repo in Rstudio

Create repo in Github

1
2
3
4
5
git config --global user.name "lyjspx"

git config --global user.email "lyjspx@126.com"

git remote add origin https://github.com/lyjspx/PROTAC.git
1
git pull --set-upstream origin main
1
git add . && git commit -m "initial commit" && git push -u origin main

To be completed