Difference between revisions of "DESK-MX8M-L/Development/Synchronizing git repositories"

From DAVE Developer's Wiki
Jump to: navigation, search
(Instructions)
Line 51: Line 51:
 
Once the git account has been enabled, the developer can:
 
Once the git account has been enabled, the developer can:
  
*clone the repository with the <code>git clone <git_remote_repository></code> command  
+
*clone the repository with the <code>git clone <git_remote_repository> -b desk-mx8m-l-2.0.0</code> command  
 
*synchronize a source tree entering the repository directory and launching the <code>git fetch origin</code> command.
 
*synchronize a source tree entering the repository directory and launching the <code>git fetch origin</code> command.
  

Revision as of 09:30, 15 February 2023

History
Version Issue Date Notes
3.0.0 Jan 2022 First DESK-MX8M release
4.0.0 Feb 2023 DESK-MX8M-L-2.0.0



Synchronizing the repository[edit | edit source]

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

Component GIT Remote
MX8 mkimage git@git.dave.eu:desk-mx-l/desk-mx8-mkimage/desk-mx8-mkimage.git
U-Boot git@git.dave.eu:desk-mx-l/u-boot-imx.git
Linux kernel git@git.dave.eu:desk-mx-l/linux-imx.git
Yocto BSP git@git.dave.eu:desk-mx-l/desk-mx-l-bsp.git

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

Access to DAVE Embedded Systems' git repositories is granted to the development kit's owners only. Please refer to this page for detailed instructions on how to get access.

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> -b desk-mx8m-l-2.0.0 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