-
Notifications
You must be signed in to change notification settings - Fork 2
Git workflow
David Carayon edited this page May 30, 2024
·
1 revision
sequenceDiagram
participant working directory
participant stagging area
participant local repo
participant remote repo
autonumber
break configuration
note right of working directory: quarto use template <br/>SebastienBoutry/inrae-project-website
end
working directory->>stagging area: git add .
stagging area->>local repo: git commit -m "message"
break configuration
note left of remote repo: create the remote repo
note left of remote repo: git remote add <br/>origin <url remote repo (https)>
end
local repo->>remote repo: git push origin main
remote repo->>working directory: git pull