Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc/ko: Add some missing option on uftrace-live.md in Korean #1967

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

EmpChan
Copy link

@EmpChan EmpChan commented Sep 9, 2024

These four missing options are translated and added to 'uftrace-live.md'

  1. public options, --trace = STATE
  2. LIVE options, -p PID, --pid=PID
  3. RECORD config options, -g, --agent
  4. REPLAY options, --no-args

@gichoel
Copy link
Contributor

gichoel commented Sep 9, 2024

Hi, EmpChan.

As described in #1957, it looks like you've created a commit after forking, after deleting the branch and forked repository while the previous PR still exists, which is not what we want.

Of course, I could confirm that the two issues identified in the previous PR have been resolved, but it appears that the PR created one unnecessary commit to fix the pre-commit issue.

Therefore, the delete spaces commit should be joined to the previous commit, doc/ko: Add some missing option on uftrace-live.md in Korean, which can be git squash using the git rebase -i command.

Please navigate to your local repository and run the command below to get it into a state where you can squash it.

$ git rebase -i HEAD~2

You should see something like the screen below, change the second pick to squash, save, and exit. (The ... is an omission, so you don't need to follow it).
Before:

pick 31872f40 doc/ko: Add some missing option on uftrace-live.md in Korean
pick a88f922c delete spaces

# Rebase f3b92bb7..a88f922c onto f3b92bb7 (2 commands)
#
# Commands:
# p, pick <commit> = use commit

.......

# However, if you remove everything, the rebase will be aborted.# # # Commands.

After:

pick 31872f40 doc/ko: Add some missing option on uftrace-live.md in Korean
squash a88f922c delete spaces

# Rebase f3b92bb7..a88f922c onto f3b92bb7 (2 commands)
#.
# Commands:
# p, pick <commit> = use commit

.......

# However, if you remove everything, the rebase will be aborted.
# # # Commands.

The next screen, shown below, is for creating a commit message to be displayed after combining the two commits, and since we only need the contents of the first commit, we erase the contents of the second commit as shown below, save and exit. (The ... means omit, so you don't need to follow it).
Before:

# This is a combination of 2 commits.
# This is the 1st commit message:

doc/ko: Add some missing option on uftrace-live.md in Korean

These four missing options are translated and added to 'uftrace-live.md'

public options, --trace = STATE
LIVE options, -p PID, --pid=PID
RECORD config options, -g, --agent
REPLAY options, --no-args

Signed-off-by: JaeChanHwang <hss598876@gmail.com>

# This is the commit message #2:

delete spaces

delete spaces of added contents

Signed-off-by: JaeChanHwang <57826563+EmpChan@users.noreply.github.com>

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.

......

# Changes to be committed:
# modified: doc/ko/uftrace-live.md

After:

# This is a combination of 2 commits.
# This is the 1st commit message:

doc/ko: Add some missing option on uftrace-live.md in Korean

These four missing options are translated and added to 'uftrace-live.md'

public options, --trace = STATE
LIVE options, -p PID, --pid=PID
RECORD config options, -g, --agent
REPLAY options, --no-args

Signed-off-by: JaeChanHwang <hss598876@gmail.com>

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.

......

# Changes to be committed:
# modified: doc/ko/uftrace-live.md

Finally, if you run into any problems while making changes or don't know what to do, leave a comment and we'll try to help :)

@EmpChan
Copy link
Author

EmpChan commented Sep 9, 2024

Thanks for comments.
I'm trying but, commit keep increase how i can solve it?

@gichoel
Copy link
Contributor

gichoel commented Sep 9, 2024

I checked the branch in EmpChan's uftrace repository, and
I think you can revert to the delete spaces commit, which is the last commit we need to keep, and do git rebase -i again using the command below.

$ git reset a88f922c23b6ace989cb28e5933727fdb4e172f9
$ git rebase -i HEAD~2

Could you please share here the results of the top two commits from your git log after re-running the git rebase -i command without doing a git push?

@EmpChan
Copy link
Author

EmpChan commented Sep 9, 2024

image
Thank for your time!
This is commit message of my git log

@gichoel
Copy link
Contributor

gichoel commented Sep 9, 2024

The results of the git reset and git rebase -i commands seem to be successful, but the commit message after git squash is not what I wanted.

I should have removed the unnecessary part of the commit that starts with delete spaces... You can modify the git commit message by running the following command.

$ git commit --amend

The above command will open a window to edit the commit message, remove the unnecessary commits from the line starting with delete spaces to the next five lines, including the blank line, and save it.

Then run git log again and you should see that there are no lines starting with delete spaces, at which point try running git push

These four missing options are translated and added to 'uftrace-live.md'

public options, --trace = STATE
LIVE options, -p PID, --pid=PID
RECORD config options, -g, --agent
REPLAY options, --no-args

Signed-off-by: JaeChanHwang <hss598876@gmail.com>
@EmpChan
Copy link
Author

EmpChan commented Sep 9, 2024

I pushed with out delete spaces message.
Thank you!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants