Home
last modified time | relevance | path

Searched refs:remoteBranch (Results 1 – 25 of 40) sorted by relevance

12

/dports/devel/lazygit/lazygit-0.31.4/pkg/gui/
H A Dremote_branches_panel.go23 remoteBranch := gui.getSelectedRemoteBranch()
24 if remoteBranch == nil {
28 gui.GitCommand.GetBranchGraphCmdStr(remoteBranch.FullName()),
51 remoteBranch := gui.getSelectedRemoteBranch()
52 if remoteBranch == nil {
55 message := fmt.Sprintf("%s '%s'?", gui.Tr.DeleteRemoteBranchMessage, remoteBranch.FullName())
62 …hSpan(gui.Tr.Spans.DeleteRemoteBranch).DeleteRemoteBranch(remoteBranch.RemoteName, remoteBranch.Na…
/dports/devel/hub/hub-2.14.2/commands/
H A Dsync.go89 remoteBranch := fmt.Sprintf("refs/remotes/%s/%s", remote.Name, branch)
94 remoteBranch = upstream
96 remoteBranch = ""
99 } else if !git.HasFile(strings.Split(remoteBranch, "/")...) {
100 remoteBranch = ""
103 if remoteBranch != "" {
104 diff, err := git.NewRange(fullBranch, remoteBranch)
111 git.Quiet("merge", "--ff-only", "--quiet", remoteBranch)
113 git.Quiet("update-ref", fullBranch, remoteBranch)
H A Dcompare.go86 var remoteBranch *github.Branch
89 remoteBranch, remoteProject, err = findPushTarget(currentBranch)
92 remoteBranch = currentBranch
98 r = remoteBranch.ShortName()
100 if flagCompareBase == "" && remoteBranch.IsMaster() {
101 …utils.Check(fmt.Errorf("the branch to compare '%s' is the default branch", remoteBranch.ShortName(…
H A Dcheckout.go98 remoteBranch := fmt.Sprintf("%s/%s", headRemote.Name, pullRequest.Head.Ref)
99 refSpec := fmt.Sprintf("+refs/heads/%s:refs/remotes/%s", pullRequest.Head.Ref, remoteBranch)
102 args.After("git", "merge", "--ff-only", fmt.Sprintf("refs/remotes/%s", remoteBranch))
104 newArgs = append(newArgs, "-b", newBranchName, "--no-track", remoteBranch)
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/scripts/
H A Dmytasks.pl107 my $remoteBranch = `git config --local --get branch.$currentBranch.merge`;
108 chop $remoteBranch;
109 $remoteBranch =~ s!^refs/heads/!!;
111 return "HEAD" if (!$remoteBranch);
113 return "$remoteRepo/$remoteBranch";
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/cmake/tribits/python_utils/
H A DSnapshotDir.py407 (remoteRepoName, remoteBranch, remoteRepoUrl) = \
410 print("origin remote branch = '" + remoteBranch + "'")
459 "Origin repo remote tracking branch: '"+remoteRepoName+"/"+remoteBranch+"'\n"+\
542 remoteBranch = ""
549 (remoteRepoName, remoteBranch) = trackingBranchStr.strip().split("/")
585 return (remoteRepoName, remoteBranch, remoteRepoUrl)
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/git/gerrit/
H A Dgerritpushdialog.cpp86 QString remoteBranch; in determineRemoteBranch() local
92 if (remoteBranch.isEmpty()) in determineRemoteBranch()
93 remoteBranch = ref; in determineRemoteBranch()
99 return remoteBranch; in determineRemoteBranch()
371 const QString remoteBranch = determineRemoteBranch(branch); in updateCommits() local
372 if (!remoteBranch.isEmpty()) { in updateCommits()
373 const int slash = remoteBranch.indexOf('/'); in updateCommits()
375 m_suggestedRemoteBranch = remoteBranch.mid(slash + 1); in updateCommits()
376 const QString remote = remoteBranch.left(slash); in updateCommits()
/dports/www/gitea/gitea-1.16.5/modules/git/
H A Drepo_compare.go55 remoteBranch string
80 compareInfo.MergeBase, remoteBranch, err = repo.GetMergeBase(tmpRemote, baseBranch, headBranch)
82 compareInfo.BaseCommitID, err = GetFullCommitID(repo.Path, remoteBranch)
84 compareInfo.BaseCommitID = remoteBranch
108 compareInfo.MergeBase, err = GetFullCommitID(repo.Path, remoteBranch)
110 compareInfo.MergeBase = remoteBranch
118 compareInfo.NumFiles, err = repo.GetDiffNumChangedFiles(remoteBranch, headBranch, directComparison)
/dports/devel/gh/cli-2.4.0/pkg/cmd/pr/checkout/
H A Dcheckout.go144 remoteBranch := fmt.Sprintf("%s/%s", remote.Name, pr.HeadRefName)
148 refSpec += fmt.Sprintf(":refs/remotes/%s", remoteBranch)
164 …ds = append(cmds, []string{"git", "reset", "--hard", fmt.Sprintf("refs/remotes/%s", remoteBranch)})
167 …= append(cmds, []string{"git", "merge", "--ff-only", fmt.Sprintf("refs/remotes/%s", remoteBranch)})
170 cmds = append(cmds, []string{"git", "checkout", "-b", localBranch, "--track", remoteBranch})
/dports/devel/eric6/eric6-21.11/eric/eric6/Plugins/VcsPlugins/vcsGit/
H A DGitPushDialog.py45 for remoteBranch in remoteBranches:
46 repo, branch = remoteBranch.rsplit("/", 2)[-2:]
197 remoteBranch = self.branchesTree.itemWidget(
200 "+" if force else "", localBranch, remoteBranch))
/dports/devel/dolphin-plugins/dolphin-plugins-21.12.3/git/
H A Dfileviewgitplugin.cpp660 dialog.localBranch(), dialog.destination(), dialog.remoteBranch()); in push()
662 dialog.localBranch(), dialog.destination(), dialog.remoteBranch()); in push()
664 dialog.localBranch(), dialog.destination(), dialog.remoteBranch())); in push()
674 args << QStringLiteral("%1:%2").arg(dialog.localBranch(), dialog.remoteBranch()); in push()
686 dialog.remoteBranch(), dialog.source()); in pull()
688 dialog.remoteBranch(), dialog.source()); in pull()
689 … Q_EMIT infoMessage(xi18nd("@info:status", "Pulling branch %1 from %2...", dialog.remoteBranch(), in pull()
694 m_process.start("git", {"pull", dialog.source(), dialog.remoteBranch()}); in pull()
H A Dpulldialog.h22 QString remoteBranch() const;
H A Dpushdialog.h24 QString remoteBranch() const;
H A Dpulldialog.cpp95 QString PullDialog::remoteBranch() const in remoteBranch() function in PullDialog
H A Dpushdialog.cpp131 QString PushDialog::remoteBranch() const in remoteBranch() function in PushDialog
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/views/vcs/
H A DCreateBranchToolbarButton.java250 final String remoteBranch = Functional.find( in promptUserRegardingRemoteBranchOfSameName() local
261 if (remoteBranch != null) in promptUserRegardingRemoteBranchOfSameName()
304 return remoteBranch != null; in promptUserRegardingRemoteBranchOfSameName()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/cmake/tribits/ci_support/
H A DCheckinTest.py614 def __init__(self, remoteRepo, remoteBranch): argument
616 self.remoteBranch = remoteBranch
620 +", remoteBranch='"+str(self.remoteBranch)+"'" \
635 remoteBranch = ""
641 remoteBranch = extraPullArgArray[2]
644 remoteBranch = extraPullArgArray[1]
654 elif remoteBranch == "":
658 return (localRepo, remoteRepo, remoteBranch, matchesAllRepos)
678 (localRepo, remoteRepo, remoteBranch, matchesAllRepos) = \
683 RemoteRepoAndBranch(remoteRepo, remoteBranch) )
[all …]
/dports/www/bolt/bolt-2.2.24/vendor/composer/composer/src/Composer/Downloader/
H A DGitDownloader.php180 $remoteBranch = $match[1];
188 if (!isset($remoteBranch)) {
191 $command = sprintf('git diff --name-status %s...%s --', $remoteBranch, $branch);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/tests/regres/git/
H A Dgit.go93 func Push(wd, remote, localBranch, remoteBranch string, flags PushFlags) error {
110 args = append(args, "push", remote, localBranch+":"+remoteBranch)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/service/operations/
H A Drebase_test.go588 remoteBranch := "remote-branch"
591 gittest.Exec(t, cfg, "-C", remoteRepoPath, "checkout", "-b", remoteBranch, "master")
594 remoteBranchHash := getBranchSha(t, cfg, remoteRepoPath, remoteBranch)
602 …erRequest(repoProto, gittest.TestUser, "1", localBranch, localBranchHash, remoteRepo, remoteBranch)
702 …branchName string, branchSha string, remoteRepo *gitalypb.Repository, remoteBranch string) *gitaly…
712 RemoteBranch: []byte(remoteBranch),
/dports/textproc/gitlab-elasticsearch-indexer/gitlab-elasticsearch-indexer-ef1440548effec15831eda2d246dacc43233cefb/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/service/operations/
H A Drebase_test.go588 remoteBranch := "remote-branch"
591 gittest.Exec(t, cfg, "-C", remoteRepoPath, "checkout", "-b", remoteBranch, "master")
594 remoteBranchHash := getBranchSha(t, cfg, remoteRepoPath, remoteBranch)
602 …erRequest(repoProto, gittest.TestUser, "1", localBranch, localBranchHash, remoteRepo, remoteBranch)
702 …branchName string, branchSha string, remoteRepo *gitalypb.Repository, remoteBranch string) *gitaly…
712 RemoteBranch: []byte(remoteBranch),
/dports/devel/gitlab-shell/gitlab-shell-65b8ec55bebd0aea64ac52b9878bafcc2ad992d3/vendor/gitlab.com/gitlab-org/gitaly/v14/internal/gitaly/service/operations/
H A Drebase_test.go577 remoteBranch := "remote-branch"
580 gittest.Exec(t, cfg, "-C", remoteRepoPath, "checkout", "-b", remoteBranch, "master")
583 remoteBranchHash := getBranchSha(t, cfg, remoteRepoPath, remoteBranch)
591 …erRequest(repoProto, gittest.TestUser, "1", localBranch, localBranchHash, remoteRepo, remoteBranch)
687 …branchName string, branchSha string, remoteRepo *gitalypb.Repository, remoteBranch string) *gitaly…
697 RemoteBranch: []byte(remoteBranch),
/dports/devel/hs-git-annex/git-annex-8.20210903/Command/
H A DSync.hs314 remoteBranch :: Remote -> Git.Ref -> Git.Ref
315 remoteBranch remote = Git.Ref.underBase $ "refs/remotes/" ++ Remote.name remote function
564 (mapM (merge currbranch mergeconfig o Git.Branch.ManualCommit . remoteBranch remote) =<< getlist)
704 let r = remoteBranch remote b
712 let r = remoteBranch remote b
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/git/
H A Dgitclient.cpp1352 QString remoteBranch; in setupCheckoutArguments() local
1360 remoteBranch = singleRef.mid(refSha.length() + 1); in setupCheckoutArguments()
1361 if (remoteBranch == ref) in setupCheckoutArguments()
1367 QString target = remoteBranch; in setupCheckoutArguments()
1369 if (remoteBranch.isEmpty()) { in setupCheckoutArguments()
1377 branchAddDialog.setTrackedBranchName(remoteBranch, true); in setupCheckoutArguments()
1385 arguments << "--track" << remoteBranch; in setupCheckoutArguments()
1736 QString remoteBranch; in synchronousTopic() local
1743 remoteBranch = ref.mid(remoteStart.size(), in synchronousTopic()
1747 if (!remoteBranch.isEmpty()) in synchronousTopic()
[all …]
/dports/comms/cubicsdr/CubicSDR-0248e5a/src/forms/SDRDevices/
H A DSDRDevices.cpp437 wxTreeItemId remoteBranch = devTree->AppendItem(devRoot, "Remote"); in OnDeviceTimer() local
472 … wxTreeItemId remoteNode = devTree->AppendItem(remoteBranch, devConfig->getDeviceName()); in OnDeviceTimer()

12