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

From DAVE Developer's Wiki
Jump to: navigation, search
Line 18: Line 18:
 
== Synchronizing the repository ==
 
== Synchronizing the repository ==
  
In [[AXEL Lite SOM/DESK-MX6-L|DESK-MX6-L]] the following source trees are clones of the correspondent '''DAVE Embedded Systems''' git repositories:
+
In [[DESK-MX6-L|DESK-MX6-L]] the following source trees are clones of the correspondent '''DAVE Embedded Systems''' git repositories:
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 35: Line 35:
 
|}
 
|}
  
For more information about the access to these repositories, please refer to [[AXEL Lite_SOM/DESK-MX6-L/Development/Building_the_Yocto_BSP|this link]].
+
For more information about the access to these repositories, please refer to [[DESK-MX6-L/Development/Building_the_Yocto_BSP|this link]].
  
 
Access to DAVE Embedded Systems' git repositories is granted to development kit's owners only. Please refer to [[Accessing_DAVE_Embedded_Systems_restricted_git_repositories|this page]] for detailed instructions on how to get access.
 
Access to DAVE Embedded Systems' git repositories is granted to development kit's owners only. Please refer to [[Accessing_DAVE_Embedded_Systems_restricted_git_repositories|this page]] for detailed instructions on how to get access.

Revision as of 09:41, 21 July 2021

History
Version Issue Date Notes
1.0.0 Oct 2020 First DESK release



Synchronizing the repository[edit | edit source]

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

Component GIT Remote
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 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> 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