DESK-RZ-L/Development/Synchronizing git repositories

From DAVE Developer's Wiki
Jump to: navigation, search
History
Issue Date Notes
2025/12/16 First BSP version


Synchronizing the git repository[edit | edit source]

In DESK-RZ-L, the following source trees are clones of the correspondent DAVE Embedded Systems git repositories:

Component GIT Remote
Flash Programmer https://git.dave.eu/git/desk-rz-l/flash-programmer.git
TF-A https://git.dave.eu/git/desk-rz-l/trusted-firmware-a.git
U-Boot https://git.dave.eu/git/desk-rz-l/renesas-u-boot-cip.git
Linux kernel https://git.dave.eu/git/desk-rz-l/rz-linux-cip.git
Yocto BSP https://git.dave.eu/git/desk-rz-l/meta-desk-rz.git

For more information about the access to these repositories, please refer to this link.

Instructions[edit | edit source]

The components listed in the table above can be kept in sync and up to date with DAVE Embedded Systems' repositories.

Once the git account has been enabled, the developer can:

  • clone the repository with the git clone <git_remote_repository> command
  • synchronize a source tree entering the repository directory and launching the git fetch origin command.

Please note that git fetch doesn't merge the commits on the current branch. To do that, the developer should run the git merge command or replace the fetch-merge process with a single git pull command. Please note that the recommended method is the fetch-merge process. For further information on Git, please refer to the official Git Documentation