Refreshing Remote Repositories Failed Sourcetree

  • Total 3 (delta 2), reused 0 (delta 0) remote: error: refusing to update checked out branch: refs/heads/master remote: error: By default, updating the current branch in a non-bare repository remote: error: is denied, because it will make the index and work tree inconsist ent remote: error: with what you pushed, and will require 'git reset -hard.
  • Sep 21, 2020 This command sets the “origin” URL to be equal to our SSH URL. Now that we’ve run this command, our existing Git repository will use the SSH URL to connect to the remote version of the repository. If you are cloning a new repository, you don’t need to change the URL with which you are working.
I use

Apr 27, 2016 error: failed to push some refs to ' git@mygitserver:myuser/myrepo.git'. Hint: Updates were rejected because the tag already exists in the remote. The culprit is shown below. In the 'push' dialog there is an option to 'Push all tags'. Unticking that makes the errors go away. There is a better way to do this via Preferences under the 'Git' tab. However, you may need to using the command line for others. From a repository in Sourcetree, you can find the command line. Permission denied (publickey). No suitable response from remote. Repository access denied. When attempting to clone, push, or pull over SSH with Git, you may receive one of these messages if Bitbucket couldn't. Refreshing Remote Repositories Failed Sourcetree For Mac Dell Optiplex 780 Audio Driver Windows 10 Pdf2id Free Mac Payday 2 How To Get Coins Screenshot Editor 2 3 3 0 Apple Computer Keyboard Shortcuts. Refreshing Remote Repositories Failed Sourcetree.

SourceTree to manage all my Git repositories, it's a great tool but sometimes something goes wrong with remote tags refs in one of my work repositories and I get error messages when I do a push that tells me that a bunch of tags have been rejected. Now I never actually create any tags so this is a little confusing. Cloning a fresh version of the repository fixes this but is not a solution all the time, especially if you have a bunch of stashes. Luckily there is an option in SourceTree to disable pushing tags to remotes.

Refreshing Remote Repositories Failed Sourcetree Report

This is the kind of error message I get...
Git
To [email protected]:myuser/myrepo.git
= [up to date] develop -> develop
= [up to date] 7.0.5.1 -> 7.0.5.1
= [up to date] 7.0.6.1 -> 7.0.6.1
= [up to date] 7.0.7.1 -> 7.0.7.1
= [up to date] 7.0.8.1 -> 7.0.8.1
= [up to date] 7.0.9.1 -> 7.0.9.1
! [rejected] 7.0.10.1 -> 7.0.10.1 (already exists)
! [rejected] 7.0.11.1 -> 7.0.11.1 (already exists)
! [rejected] 7.1.1.1 -> 7.1.1.1 (already exists)
updating local tracking ref 'refs/remotes/origin/develop'
error: failed to push some refs to '[email protected]:myuser/myrepo.git'
hint: Updates were rejected because the tag already exists in the remote.

The culprit is shown below. In the 'push' dialog there is an option to 'Push all tags'. Unticking that makes the errors go away.Remote

Refreshing Remote Repositories Failed Sourcetree File


There is a better way to do this via Preferences under the

Refreshing Remote Repositories Failed Sourcetree System

'Git' tab simply untick 'Push all tags to remotes' and you're done.

Refreshing Remote Repositories Failed Sourcetree Code



-i

A headline feature of SourceTree 1.3 is the support for submodules (in Git) and subrepositories (in Mercurial). The terms may be different, but they refer to the same concept; that of nesting other repositories within the folder structure of your own repository. The most common reason for wanting to do this is that your project has dependencies on other code bases (libraries for example), and you want to track those from their original sources rather than duplicating the files within your own repository.

For the sake of brevity from here on I’ll use the term ‘submodule’ to mean ‘subrepository’ as well, unless I’m talking about a Mercurial-specific feature.

Refreshing Remote Repositories Failed Sourcetree Test

Adding a submodule to your project

Adding a new submodule to your project is simple, just right-click on a blank area of the sidebar and select ‘New Submodule’ (or select it from the Repository menu).

Refreshing remote repositories failed sourcetree software

You’ll then be prompted to provide a source URL to clone the contents from, and the path within the current repository that this submodule will reside. Once the submodule has cloned, you’ll see it appear in the sidebar like this:

Refreshing Remote Repositories Failed Sourcetree Download

Refreshing remote repositories failed sourcetree report

This tells you that your submodule is located in dependencies/sub1 and is currently on the ‘master’ branch. If you wanted to see more detail about the submodule, just double-click on it to open it in its own repository window, from which you can, if you like, make changes to it just like any other repository. Submodule entries can also have annotations to let you know if there are uncommitted changes in the submodule (ellipsis annotation, i.e. ‘…’), or incoming / outgoing changes (up/down arrow).

In this case you’ve just added the submodule, but it’s not actually committed yet. You’ll see in the file status view that a couple of entries have been staged:

In Mercurial, there will be a “.hgsub” file instead but the principle is the same. These uncommitted changes represent the addition of the submodule to your repository, and you must commit & push them as you would do with any other change. Once you’ve done this, anyone cloning the repository will also get the submodule, at the same commit.

Download

Typical submodule tasks

Submodules are likely to be more static than your own main repository, but there are still several tasks related to them that you may want to do:

Change the submodule commit which your repository is tracking

Submodules are pinned at a given commit, so that you always get the expected version of the submodule contents. If there are new changes in the submodule which you want to use in your repository, all you have to do is open the submodule (double-click) and checkout/update to a different commit, either via pull, merge or just manually checking a commit out – just as you would do normally with any other repository. Once you have done this, return to the parent repository and you will see an uncommitted change on the submodule, which will show in the diff the change in tracked commit:

Again, you commit & push this change just like any other, after which point the submodule contents will be pinned at this new commit.

Sourcetree

Commit / push changes to a submodule together with parent repository

If you have write access to the upstream submodule source (and if not, maybe you might fork it and change the submodule source, see below), you may sometimes update files in the submodule, and want to commit / push those changes at the same time as you commit / push changes to your parent repository.

Mercurial actually requires this, by default it automatically commits subrepository changes when you commit the parent, using the same commit message. However, that’s often not what you want – there’s a good chance you’ll want a different commit message for the submodule change. Luckily, SourceTree makes that really easy – when you try to commit the parent, if there are uncommitted changes in submodules you’ll get a prompt telling you so, like this:

From this dialog you can click the ‘Commit’ button next to the submodule and commit those changes with a message of your choosing, separate to the parent repo commit message. In Git, the ‘Skip’ button at the bottom is enabled so you can just leave the changes uncommitted if you like, but Mercurial doesn’t allow this.

Change the source URL for a submodule

A submodule definition includes the URL which people cloning the parent repository will retrieve the submodule content from. Sometimes, you might want to change this – a common example is if you were using a 3rd party library which you had only read-access to, but later decided to fork it and make your own changes. In this case, you’ll want to change the source URL to your fork for all future clones / updates. In SourceTree this is easy, just right-click on the submodule and select “Change Source URL”. You’ll need to commit and push the change as normal, but after that your fork will be the source for the submodule.

Summary

Refreshing Remote Repositories Failed Sourcetree Software

This has been a quick introduction to the submodule and subrepository support in SourceTree 1.3. It’s designed to make your life easier when managing projects with their dependencies and other project groupings, we hope you like it!