Lines Matching refs:git
150 ``git commit -s``. Use other commits in the zephyr git history as examples.
158 commit by running ``git commit --amend -s``.
161 your branch after this with ``git push -f``.
355 git config --global user.name "Zephyr Developer"
356 git config --global user.email "z.developer@example.com"
473 code, make the file *$ZEPHYR_BASE/.git/hooks/pre-commit* executable and edit
480 exec git diff --cached | ${ZEPHYR_BASE}/scripts/checkpatch.pl -
484 *$ZEPHYR_BASE/.git/hooks/pre-push* executable and edit it to contain:
505 issues, you can add option --no-verify to the git push command.
587 git remote rename origin upstream
591 git remote add origin https://github.com/<your github id>/zephyr
595 git remote -v
607 git checkout main
608 git checkout -b fix_comment_typo
613 git checkout -b fix_out_of_date_patch origin/net
621 git add [file(s) that changed, add -p if you want to be more specific]
625 git status
629 git diff --cached
633 git commit -s
643 git push origin fix_comment_typo
672 git checkout main
673 git checkout -b fix_another_issue
680 git fetch --all
681 git rebase --ignore-whitespace upstream/main
683 The ``--ignore-whitespace`` option stops ``git apply`` (called by rebase)
686 git rebase -i <offending-commit-id>^
696 git add [file(s)]
697 git rebase --continue
701 git push --force origin fix_comment_typo
781 If you're not sure what to use, try running ``git log FILE``, where
835 You should have set your :ref:`git-name-and-email`
836 already. Create your commit with ``git commit -s`` to add the