This file contains hidden or 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
git fetch origin | |
git reset --hard origin/branch_name |
This file contains hidden or 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
data class Car( | |
val model: String?, | |
val year: Int?, | |
val required: String? | |
) { | |
private constructor(builder: Builder) : this(builder.model, builder.year, builder.required) | |
companion object { | |
inline fun build(block: Builder.() -> Unit) = Builder().apply(block).build() |
This file contains hidden or 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
git branch -m old-name new-name # Rename your local branch. | |
git push origin :old-name new-name # Delete the old-name remote branch and push the new-name local branch. | |
# Switch to the branch (if you are not there) | |
git push origin -u new-name # Reset the upstream branch for the new-name local branch. |