Lines Matching full:git

150 ``git commit -s``. Use other commits in the zephyr git history as examples.
152 in Git.
160 commit by running ``git commit --amend -s``.
163 your branch after this with ``git push -f``.
191 You should be familiar with common developer tools such as Git and CMake, and
195 on https://github.com and have Git tools available on your development system.
338 Git Setup
342 information to your Git installation, set the Git configuration
351 git config --global user.name "Zephyr Developer"
352 git config --global user.email "z.developer@example.com"
356 …pseudonym or hacker handle. The email address that you use in your Git configuration must match th…
361 ``email address`` and profile ``name`` also match those used in your git configuration
378 Changes are submitted as Git commits. Each commit has a *commit
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
499 in the Git commit's ``Author:`` field.
567 code, make the file *$ZEPHYR_BASE/.git/hooks/pre-commit* executable and edit
574 exec git diff --cached | ${ZEPHYR_BASE}/scripts/checkpatch.pl -
578 *$ZEPHYR_BASE/.git/hooks/pre-push* executable and edit it to contain:
599 issues, you can add option --no-verify to the git push command.
634 * Git commit formatting
763 command line Git commands and browser interaction with GitHub. As it is with
764 Git, there are multiple ways of getting a task done. We'll describe a typical
783 git remote rename origin upstream
785 Let Git know about the fork you just created, naming it ``origin``::
787 git remote add origin https://github.com/<your github id>/zephyr
791 git remote -v
803 git checkout main
804 git checkout -b fix_comment_typo
809 git checkout -b fix_out_of_date_patch origin/net
817 git add [file(s) that changed, add -p if you want to be more specific]
821 git status
825 git diff --cached
829 git commit -s
839 git push origin fix_comment_typo
868 git checkout main
869 git checkout -b fix_another_issue
876 git rebase -i <offending-commit-id>^
886 git add [file(s)]
887 git rebase --continue
891 git push --force origin fix_comment_typo
899 git fetch --all
900 git rebase --ignore-whitespace upstream/main
902 The ``--ignore-whitespace`` option stops ``git apply`` (called by rebase)
905 git push --force origin fix_comment_typo
931 https://git-scm.com/docs/git-rebase#Documentation/git-rebase.txt---keep-base
934 `git-rebase`_