- Este documento se basa en “Happy Git with R” https://happygitwithr.com
which git git --version
git clone https://mylink.com/you/your_repo
cd myrepo ls head README.md git remote show origin
echo "Something I want to add to the README in my local computer" >> README.md git status
Qué pasó?
Vamos a commit (hacer, encomendar) los cambios y luego a subir (push) los mismos a GitHub
git add README.md git commit -m "A commit from my local computer" git push
Pueden seguir estos tutoriales para arreglarlo https://happygitwithr.com/credential-caching.html https://happygitwithr.com/ssh-keys.html
Desde RStudio:
Tenemos un folder en algún lado con nuestro Rproject File > New Project > Existing Directory
Vayan a GitHub y creen un nuevo proyecto con un nombre informativo, de preferencia el mismo que ya usaron en su proyecto. (Esta vez no inicializar con README!!)
--- title: "RmarkwondTest" output: html_document: keep_md: true ---
git clone https://repor.com
git add newfile.R git commit -m "mensaje informativo" newfile.R
git status git log git log --oneline
git diff git diff myfile.R
git push
git pull git pull --ff-only
git fetch
git branch [branch-name] git checkout [branch-name]
<<<<<<< HEAD:index.html <div id="footer">contact : email.support@github.com</div> ======= <div id="footer"> please contact us at support@github.com </div> >>>>>>> issue-5:index.html
git merge --abort t