Home
last modified time | relevance | path

Searched refs:git (Results 1 – 25 of 119) sorted by relevance

12345

/Zephyr-latest/boards/intel/common/scripts/
Dbuild_grub.sh23 git clone https://git.savannah.gnu.org/git/grub.git src
27 git checkout grub-2.12-rc1
28 git clean -fdx
/Zephyr-latest/subsys/net/lib/lwm2m/
Dlwm2m_senml_cbor_regenerate.sh12 git add -A
13 git commit -s -m"pre-patch"
15 git apply --reject lwm2m_senml_cbor.patch
DREADME_lwm2m27 git am -3 < lwm2m_senml_cbor.patch
33 git format-patch --stdout HEAD~1.. > lwm2m_senml_cbor.patch
/Zephyr-latest/
D.gitattributes1 # used to remove files from deployment using `git archive`
2 # git files
7 # Tell git to not diff certain files
/Zephyr-latest/scripts/
Dseries-push-hook.sh26 base_commit=`git rev-parse $remote/main`
30 ${ZEPHYR_BASE}/scripts/checkpatch.pl --git $range
/Zephyr-latest/cmake/modules/
Dgit.cmake11 # OUTPUT is set to the output of `git describe --abbrev=12 --always` as run
26 message(STATUS "git describe failed: ${stderr}")
28 message(STATUS "git describe warned: ${stderr}")
/Zephyr-latest/doc/develop/west/
Dworkspaces.rst50 The ``west update`` command essentially runs ``git fetch YOUR_PROJECT_URL``
62 https://git-scm.com/docs/gitcredentials
72 In general, you can store your credentials on disk using the "store" git
73 credential helper. See the `git-credential-store`_ manual page for details.
79 west forall -c "git config credential.helper store"
85 west forall -c "git config credential.helper store" foo bar
91 git config --global credential.helper store
103 echo "https://x-access-token:$GH_TOKEN@github.com" >> ~/.git-credentials
106 them in memory temporarily using `git-credential-cache`_ instead.
113 git config --global url."git@github.com:".insteadOf "https://github.com/"
[all …]
Dbuilt-in.rst114 HEAD <https://git-scm.com/docs/git-checkout#_detached_head>`_
136 For safety, ``west update`` uses ``git checkout --detach`` to check out a
142 ``HEAD`` checked out by west, then git will warn you that you've left
157 ``west update --rebase`` will fail in projects that have git conflicts
160 ``git``, or you can use ``git -C <project_path> rebase --abort`` to
205 git submodule sync --recursive
213 git submodule update --init --checkout --recursive
216 git submodule update --init --rebase --recursive
223 git submodule sync --recursive -- <submodule-path>
231 git submodule update --init --checkout --recursive <submodule-path>
[all …]
Dmanifest.rst128 url-base: https://git.example.com/base1
130 url-base: https://git.example.com/base2
149 bases are respectively ``https://git.example.com/base1`` and
150 ``https://git.example.com/base2``. You can use SSH URL bases as well; for
151 example, you might use ``git@example.com:base1`` if ``remote1`` supported Git
194 ``https://git.example.com/base1/proj1``. The remote ``url-base`` is appended
206 ``https://git.example.com/base2/my-path``. The ``repo-path`` attribute, if
309 .. [#f1] In git, HEAD is a reference, whereas HEAD~<n> is a valid revision but
317 .. _Git submodules: https://git-scm.com/book/en/v2/Git-Tools-Submodules
336 url-base: https://git.example.com/base1
[all …]
/Zephyr-latest/subsys/bindesc/
DKconfig.version39 bool "Kernel git reference"
41 The kernel git reference, such as "v3.3.0-18-g2c85d9224fca",
72 bool "App git reference"
74 The application git reference, such as "v3.3.0-18-g2c85d9224fca"
/Zephyr-latest/scripts/checkpatch/
Dcheck_known_checkpatch_issues.sh75 commit_id_str=$(git log ${git_log_params} HEAD | head -n 1)
141 git add ${known_checkpatch_issues}
142 git commit -m "${msg}"
/Zephyr-latest/doc/develop/manifest/external/
Dcannectivity.rst37 url: https://github.com/CANnectivity/cannectivity.git
54 …https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/net/can/usb/gs_usb…
/Zephyr-latest/doc/project/
Dissues.rst28 For this, `git bisect`_ is the recommended tool.
36 https://git-scm.com/docs/git-bisect
/Zephyr-latest/doc/
DLICENSING.rst17 https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/COPYING
/Zephyr-latest/boards/starfive/visionfive2/doc/
Dindex.rst43 git clone the vf2-loader tool from https://github.com/orangecms/vf2-loader.git and
44 xmodem tool from https://github.com/orangecms/xmodem.rs.git side by side.
53 to previously git cloned vf2-loader/ directory and cd into it.
/Zephyr-latest/samples/net/ptp/
DREADME.rst50 git clone git://git.code.sf.net/p/linuxptp/code
/Zephyr-latest/boards/arm/fvp_base_revc_2xaemv8a/doc/
Dindex.rst98 git clone https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git --depth 1
/Zephyr-latest/samples/tfm_integration/tfm_regression_test/
DREADME.rst14 … tests are implemented in the tf-m-tests repo: https://git.trustedfirmware.org/TF-M/tf-m-tests.git/
16 … supported in the trusted-firmware-m repo: https://git.trustedfirmware.org/TF-M/trusted-firmware-m…
/Zephyr-latest/doc/contribute/
Dguidelines.rst150 ``git commit -s``. Use other commits in the zephyr git history as examples.
160 commit by running ``git commit --amend -s``.
163 your branch after this with ``git push -f``.
351 git config --global user.name "Zephyr Developer"
352 git config --global user.email "z.developer@example.com"
361 ``email address`` and profile ``name`` also match those used in your git configuration
434 If you're not sure what to use, try running ``git log FILE``, where
477 already. Create your commit with ``git commit -s`` to add the
567 code, make the file *$ZEPHYR_BASE/.git/hooks/pre-commit* executable and edit
574 exec git diff --cached | ${ZEPHYR_BASE}/scripts/checkpatch.pl -
[all …]
/Zephyr-latest/samples/net/gptp/
DREADME.rst72 git clone git@github.com:AVnu/gptp.git
136 git clone git://git.code.sf.net/p/linuxptp/code
/Zephyr-latest/cmake/
Dgen_version_h.cmake8 include(git)
/Zephyr-latest/boards/arm/mps3/
Dmps3_corstone300_an552_ns.dts80 …* https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/tree/platform/ext/target/mps3/corsto…
Dmps3_corstone300_fvp_ns.dts80 …* https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/tree/platform/ext/target/mps3/corsto…
Dmps3_corstone310_an555_ns.dts80 …* https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/tree/platform/ext/target/mps3/corsto…
Dmps3_corstone310_fvp_ns.dts80 …* https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/tree/platform/ext/target/mps3/corsto…

12345