Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
build.sh: v6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Pzqqt committed Apr 26, 2023
1 parent e4bcba3 commit 5263dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export ARCH=arm64
export KBUILD_BUILD_HOST="wsl2"
export KBUILD_BUILD_USER="pzqqt"

export LOCALVERSION=-v6.1
export LOCALVERSION=-v6.2

ccache_=
(! $no_ccache) && ccache_=`which ccache` || echo -e "${yellow}Warning: ccache is not used! $white"
Expand Down

5 comments on commit 5263dfa

@TogoFire
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plis. Make git push -f github.com/kerneltree HEAD:master

And no fork "forked from https://github.com/xiaomi-sm6150/android_kernel_xiaomi_sm6150"

To make it easier to search for commits and cherry-pick without error.

For example. I want to cherry-pick this commit of yours: b865947

The step I have to do to be possible:
And I have to download the tree and push it to another tree git push -f github.com/kt HEAD:master
So that's the only way to be able to cherry-pick without fail, because of a damn FORK

@TogoFire
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another nice thing would be if you left the merge commits from google and codeaurora-caf behind. And your commits, mostly from the device, on the front for easy reading and not having to skip 100 pages or more.
That's if you want something more organized. Because it makes it easier to read and find a bad commit to remove.

@Pzqqt
Copy link
Owner Author

@Pzqqt Pzqqt commented on 5263dfa Apr 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plis. Make git push -f github.com/kerneltree HEAD:master

And no fork "forked from https://github.com/xiaomi-sm6150/android_kernel_xiaomi_sm6150"

To make it easier to search for commits and cherry-pick without error.

For example. I want to cherry-pick this commit of yours: b865947

The step I have to do to be possible: And I have to download the tree and push it to another tree git push -f github.com/kt HEAD:master So that's the only way to be able to cherry-pick without fail, because of a damn FORK

Learning to use this command will make cherry picking easier and faster.

curl <github link>.patch | git am

Also, before complaining, please see what other branches are in this repository.🙃

@TogoFire
Copy link

@TogoFire TogoFire commented on 5263dfa Apr 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Learning to use this command will make cherry picking easier and faster.

curl <github link>.patch | git am

Also, before complaining, please see what other branches are in this repository.🙃

Okay. Thanks. I go try.

@TogoFire
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Plis. Make git push -f github.com/kerneltree HEAD:master
And no fork "forked from https://github.com/xiaomi-sm6150/android_kernel_xiaomi_sm6150"
To make it easier to search for commits and cherry-pick without error.
For example. I want to cherry-pick this commit of yours: b865947
The step I have to do to be possible: And I have to download the tree and push it to another tree git push -f github.com/kt HEAD:master So that's the only way to be able to cherry-pick without fail, because of a damn FORK

Learning to use this command will make cherry picking easier and faster.

curl <github link>.patch | git am

Also, before complaining, please see what other branches are in this repository.upside_down_face

I just tested here, it doesn't work. It acts as if it had gone, but when you look for the commit, it doesn't exist, as if it were invisible. In short, in theory it's beautiful, but in practice these "git am" commands don't work.

Please sign in to comment.