@@ -79,25 +79,27 @@ func newReconcile() *cobra.Command {
79
79
},
80
80
}
81
81
82
- c .PersistentFlags ().StringVarP (& sourceBranch , "source" , "s" , "" , "The souce branch to reconcile from." )
82
+ c .PersistentFlags ().StringVarP (& sourceBranch , "source" , "s" , "" , "The source branch to reconcile from." )
83
83
failOnError (c .MarkPersistentFlagRequired ("source" ), "reconcile" )
84
84
85
- c .PersistentFlags ().StringVar (& sourceRemote , "source-remote" , "origin" , "The remote for the source branch." )
85
+ c .PersistentFlags ().StringVar (& sourceRemote , "source-remote" , "origin" , `The URL for the source branch.
86
+ Can be left out incase the source and target branches are in the same repository.` )
86
87
87
88
c .PersistentFlags ().StringVarP (& targetBranch , "target" , "t" , "" , "The target branch to reconcile to." )
88
89
failOnError (c .MarkPersistentFlagRequired ("target" ), "reconcile" )
89
90
90
- c .PersistentFlags ().StringVar (& targetRemote , "target-remote" , "origin" , "The remote for the target branch." )
91
+ c .PersistentFlags ().StringVar (& targetRemote , "target-remote" , "origin" , `The URL for the target branch.
92
+ Can be left out incase the source and target branches are in the same repository.` )
91
93
92
- c .PersistentFlags ().StringVar (& repositoryName , "repo" , "" , "The name of the gihtub repository." )
94
+ c .PersistentFlags ().StringVar (& repositoryName , "repo" , "" , "The name of the TARGET github repository." )
93
95
failOnError (
94
96
c .PersistentFlags ().MarkDeprecated ("repo" , `please use "repository" flag instead.` ),
95
97
"reconcile" ,
96
98
)
97
- c .PersistentFlags ().StringVar (& repositoryName , "repository" , "" , "The name of the gihtub repository." )
99
+ c .PersistentFlags ().StringVar (& repositoryName , "repository" , "" , "The name of the TARGET github repository." )
98
100
failOnError (c .MarkPersistentFlagRequired ("repository" ), "reconcile" )
99
101
100
- c .PersistentFlags ().StringVar (& owner , "owner" , "" , "The account owner of the github repository." )
102
+ c .PersistentFlags ().StringVar (& owner , "owner" , "" , "The account owner of the TARGET github repository." )
101
103
failOnError (c .MarkPersistentFlagRequired ("owner" ), "reconcile" )
102
104
103
105
c .Flags ().BoolVar (
0 commit comments