Lines Matching refs:git
285 `git log --oneline path_to_files/filename_or_* | grep clang-format | head -n 5`
291 `git revert HASH -n`
297 `git status | grep both.modified`
301 `git revert --abort`
307 `git reset HEAD both_modified_file`
311 `git checkout both_modified_file`
315 `git cherry-pick your_patch_that_used_to_apply_cleanly`
323 `git add path_to_files/filename_or_*`
325 `git commit --amend`
329 `git checkout .`
333 `git diff`
339 `git log --oneline | head -n 1`
347 `git checkout HEAD^ -b reformat_my_patch_branch`
349 `git log --oneline | head -n 1`
359 `git add path_to_files/filename_or_*`
361 `git commit -m tmp_format_patch`
365 `git revert HEAD --no-edit`
369 `git cherry-pick HASH`
379 `git add path_to_files/filename_or_*`
381 `git commit -m tmp_format_patch_2`
385 `git log --oneline | head -n 5`
397 ##### Squash the last three patches with git rebase
399 `git rebase -i HEAD^^^`
413 `git log --oneline | head -n 2`
421 `git show`
425 `git checkout aosp/master`
427 `git cherry-pick HASH`