-
contact me, so I can add you as a collaborator on the repository.
-
Clone the repository to your local machine
-
dont forget to fetch remote status before actions by running
git fetch
- create a new branch
git checkout -b <branch-name>- work there
- push changes to github
git add .
git commit -m "your message"
git push origin <branch-name>
git branch --set-upstream-to origin/<branch-name>- on
devbranch, we will merge all remote changes. to prepare for this we need to- update our local version to the state of the
devbranch - integrate the changes (so that we dont lose the newest/correct version) in the merge editor
- upload the changes
- update our local version to the state of the
# 1
git merge --no-ff dev
# 2 do the merging
# 3 then upload the new version (add all changes with ., commit with message, push)
git add .
git commit -m "your merge message"
git pushCreate a pull-request in github to move dev changes to main branch.
- paste the complete file path in your browsers search field
- open https://htmlpreview.github.io and paste github link
- open https://htmlpreview.github.io?[link]
example: https://htmlpreview.github.io/?https://github.com/GebTorte/r-wiki/blob/main/ggplot2.html
- hit the preview button
hi