8 lines
217 B
Kotlin
8 lines
217 B
Kotlin
package com.jetpackduba.gitnuro.git.branches
|
|
|
|
object BranchesConstants {
|
|
/**
|
|
* Prefix added before the upstream branch name in .git/config
|
|
*/
|
|
const val UPSTREAM_BRANCH_CONFIG_PREFIX = "refs/heads/"
|
|
} |