This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05d1b26
commit f1066a8
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
docs/static_site/src/pages/community/clang_format_guide.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
layout: page | ||
title: Clang format | ||
subtitle: Clang format in MXNet codebase for reviewers and contributors. | ||
action: Contribute | ||
action_url: /community/index | ||
permalink: /community/code_guide | ||
--- | ||
<!--- Licensed to the Apache Software Foundation (ASF) under one --> | ||
<!--- or more contributor license agreements. See the NOTICE file --> | ||
<!--- distributed with this work for additional information --> | ||
<!--- regarding copyright ownership. The ASF licenses this file --> | ||
<!--- to you under the Apache License, Version 2.0 (the --> | ||
<!--- "License"); you may not use this file except in compliance --> | ||
<!--- with the License. You may obtain a copy of the License at --> | ||
|
||
<!--- http://www.apache.org/licenses/LICENSE-2.0 --> | ||
|
||
<!--- Unless required by applicable law or agreed to in writing, --> | ||
<!--- software distributed under the License is distributed on an --> | ||
<!--- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY --> | ||
<!--- KIND, either express or implied. See the License for the --> | ||
<!--- specific language governing permissions and limitations --> | ||
<!--- under the License. --> | ||
|
||
Clang-format Guide and Tips | ||
=================== | ||
|
||
This wiki page describes how to set up clang-format tool as a part of your worklow. Running the command given in the description will fix clang-format problem. | ||
|
||
|
||
- Add `tools/lint/git-clang-format-13 ` to your `$PATH`. Once its added to your `$PATH`, running `git clang-format` will invoke it. | ||
```bash | ||
git clang-format | ||
``` | ||
|
||
|
||
- To reformat chosen file just do: | ||
```bash | ||
# `_FILE_NAME_` is the name of a file to be formatted. | ||
# i - apply edits to files instead of displaying a diff | ||
clang-format -i _FILE_NAME_ | ||
``` | ||
|
||
- To reformat all the lines in the latest git commit, just do: | ||
```bash | ||
git diff -U0 --no-color HEAD^ | clang-format-diff.py -i -p1 | ||
|
||
``` | ||
|
||
- If you want to apply clang-format only to the changed lines in each commit do the following: | ||
```bash | ||
# If it's a child of origin/master, the following command-line could be used: | ||
# If you want to run this command on another brnach, then origin/master needs to be replaced. | ||
export COMMIT_SHA=$(git rev-list --ancestry-path origin/master..HEAD | tail -n 1) | ||
|
||
git filter-branch --tree-filter 'git-clang-format $COMMIT_SHA^' -- $COMMIT_SHA..HEAD | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters