Questions tagged [upstream-branch]

60 questions
1
vote
1 answer

After git push -u origin exp:experimental is represented as master branch in the network graph

I'm just trying to understand if there's something strange in what I see on GitHub. In my project there's the default master branch and a dev local branch with upstream counterpart named development. After some modification in the working directory…
Enlico
  • 23,259
  • 6
  • 48
  • 102
1
vote
3 answers

Pass Artifact or String to upstream job in Jenkins Pipeline

Goal I'm trying to orchestrate a dependency chain using the GitHub organization plugin along with the jenkins pipeline. As the products I'm building have a number of shared dependencies, I'm using nuget packages to manage dependency versioning and…
0
votes
0 answers

Git push is not working after set the upstream remote branch to local branch

I have a two branch called NB1 and NB2, Those branch present in remote repository I have set a upstream as "git branch --set-upstream-to=origin/NB1 NB2" Then switch the branch to NB2, Now I have committed changes in the NB2 Now I try to push the…
0
votes
0 answers

Failed to install kernel modules: SSL error, Permission denied

When attempting to compile my custom Linux kernel, the sudo make modules_install command failed, resulting in the following errors: INSTALL /lib/modules/6.4.0+/kernel/arch/x86/events/amd/power.ko SIGN …
Itay Avraham
  • 329
  • 1
  • 3
  • 15
0
votes
0 answers

Failed to install kernel modules

When attempting to compile my custom Linux kernel, the sudo make modules_install command failed, resulting in the following errors: INSTALL /lib/modules/5.14.0-rc7+/kernel/arch/x86/crypto/blake2s-x86_64.ko SIGN …
Itay Avraham
  • 329
  • 1
  • 3
  • 15
0
votes
0 answers

Using git to push to github - current branch has no upstream then shh error

I've pushed from git to github on this ssh/set up before. IT HAS WORKED. I created a new repo on github. I set up remote - when I type git remote -v it gives back two lines starting with "origin" that have the (fetch) and (push) addresses. They're…
sw016428
  • 11
  • 1
  • 3
0
votes
2 answers

git branching advanced usage, rebase from upstream branch

Following up on Git: rebase onto development branch from upstream, basically the same ask as: I have local master and develop branches. I do all my work on develop and then merge them into master for releases. There is a remote branch,…
xpt
  • 20,363
  • 37
  • 127
  • 216
0
votes
1 answer

I am pushing code to the forked repository. But, the PR goes to the upstream. Why?

There is something that I do not understand. 1 - I am working on this repository tallyfor/re-frame-firebase (link). As you see, it is a fork of deg/re-frame-firebase (link). 2 - Now, after doing a git clone of git clone…
Pedro Delfino
  • 2,421
  • 1
  • 15
  • 30
0
votes
0 answers

Upstream links disappear when fetch refspecs are provided directly in the command line

Consider a common scenario where we have two upstream branches set up for two local branches. This can be verified using git branch --all -vv which provides the following output: * master 74d2505 [origin/master] commit_message_X …
H D
  • 151
  • 6
0
votes
2 answers

Can I get the upstream remote branch by ruby-git

I'm using ruby-git to operate my Git repo. I can get the local branch that checkout from remote branch, how can I get it upstream remote branch? This's the code: require 'Git' repo = Git.open("xxxpath.git") localbranch =…
李晨光
  • 3
  • 1
0
votes
1 answer

Git error index file is too small and the upstream is gone

I am using GitKraken on Linux for a few years now. And it was working somehow fine so far. But yesterday suddenly I received a message from Gitkraken that they no longer provide a free access to the private repositories!! I was in a hurry and needed…
user_5
  • 498
  • 1
  • 5
  • 22
0
votes
1 answer

How to checkout a remote git branch ? Or to link a remote branch with a different git directory branch?

I'm working with several repositories origin : the remote repository back : which is a backup of the repository on my local PC uptreams : repository for later pull request git remote -v back /opt/lampp/htdocs/work/repo_backup/webtrees…
0
votes
1 answer

How to sync a downloaded zip with upstream without downloading the files again?

I downloaded llvm as a zip a while ago. It's a big repo, so I don't want to download the files again, I don't want the history either. However, I'd like to have future changes the main repo present locally with the changes I make for my own. I…
puio
  • 1,208
  • 6
  • 19
0
votes
1 answer

Getting error when pushing code to git branch

I'm trying to push code to my branch and I haven't made any commits to the branch previously. git add and git commit work fine but when I do git push, I get the following error: fatal: The current branch my_branch has no upstream branch. To push the…
pesky_programmer
  • 131
  • 3
  • 12
0
votes
0 answers

Why does the behavior of git branch -m differ for macOS and windows versions of git?

My colleague and I have been trying to put together a clear, consistent procedure for renaming a git branch locally and remotely. Assuming we have a branch oldname both locally and on remote, and want to rename it to newname, and we have checked out…
H3007
  • 46
  • 5