Questions tagged [bare]

37 questions
1
vote
2 answers

Websercice that has SOAPBinding.ParameterStyle.BARE requires all method (include non WEBMETHOD) has only one parameter as input

i am using cxf 2.x to develop a webservice. Here is my web service class @WebService(name = "XXXWS", targetNamespace = "http://www.XXX.com/XXXWS", portName = "XXXWSPort", serviceName = "XXXWSService") @SOAPBinding(parameterStyle =…
David
  • 3,538
  • 9
  • 39
  • 50
1
vote
0 answers

How to git clone --bare only one branch and update easily

I have a big web app project with hundreds of commits and multiple branches. I want to have a test-server with very limited space that only needs to be able to download the last content of one branch to READ. Is git clone --bare --branch…
Dan.py
  • 83
  • 7
1
vote
1 answer

cloning bare git repository and tracking files in other locations

Recently I've created a bare git repository so i can backup my configuration files (dotfiles) which are located in many places, some under the root directory. The idea was to have a repo on github so I can store the files there and update them from…
prophet-five
  • 509
  • 3
  • 14
1
vote
1 answer

Git: Difficulty Getting Existing Git Repository to Track New Bare Remote Repository

Summary: I'm having difficulty getting an existing local repository to track a new bare remote repository. What I've tried: I've attempted to push my local repo to the new bare repo while setting upstream tracking. Git tells me upstream tracking is…
David Mays
  • 466
  • 4
  • 14
1
vote
1 answer

SBT: Add/enable IntegrationTest configuration in bare build.sbt

I have a build.sbt written in bare style, i.e. containing only SettingKeys. I want to add IntegrationTest configuration to project, but I can't manage to do so without declaring a project and calling configs method on it like following: lazy val…
Roman Lebedev
  • 903
  • 1
  • 6
  • 16
1
vote
0 answers

Looking at CPU load

I'd like to have some advices because I'm stuck ! I need to measure the CPU load on my device (Hercules RM48 for instance). However, it's programmed in bare metal so I don't have access to the classic Linux commands. How would you do to have an…
azolan
  • 11
  • 2
1
vote
2 answers

How do i add and sync my local git on server? What is bare repo?

I am using git from a long time but never set it up on server. Refereeing to this Git: move existing repository from PC to server, clone from server I have initiate a bare repo on server but while adding origin in local "git remote add origin…
sarabs3
  • 504
  • 7
  • 13
1
vote
1 answer

Mips - print_string syscall doesn't work in -bare mode

This code is part of a much bigger program that worked just fine. Then I realized the assignment would be tested in -bare mode. As soon as I tried running it in -bare mode my print_string syscalls went from working fine to not printing anything…
0
votes
1 answer

External interputions EXTI don't work in nucleo STM32F103RB

one of EXTI doesn't work. In fact, I have two EXTI interruptions from PB3 and PB4. whenever I push the button from PB3, the LED power_ON, and whenever I push the button from PB4, the LED power_OFF. The issue that I have, is EXTI3 work and EXTI4…
0
votes
1 answer

Single git remote repository with multiple IP address

I have a git bare repository as a remote on a server with 2 network interfaces, whose IP address are 192.168.x.x and 223.x.x.x respectively. I have a signle git project on this single remote origin. Inside the lab this remote can only be accessed…
gogma
  • 1
  • 1
0
votes
1 answer

DELETED file in git bare repository

I noticed that on Bitbucket server side in "repository" catalog in some of repositories is "DELETED" file exist. It is means that repo was deleted?)
0
votes
1 answer

Expo run from WSL causes my internet to drop out

A react native expo app run within WSL, is the cause of a very annoying bug. A few minutes after starting the Expo project, the internet on the windows laptop stops working. I found this command fixes it: Restart-Service LxssManager - when run from…
Yesman500
  • 156
  • 1
  • 2
  • 8
0
votes
1 answer

How to create bare repository with pack-refs?

I need to create bare repository with package-refs files. Command git init --bare create bare repository without pack-refs files. What I have to do?
devil15
  • 19
0
votes
0 answers

Getting Data in registers (MIPS Bare)?

Can someone explain the concept of getting strings (data) into registers. I simply want to print a line from .data onto the screen. It seems so easy but I can't understand exactly what I'm doing. Here's some code: .data input: .asciiz "Welcome to…
TomD
  • 9
  • 1
  • 7
0
votes
0 answers

What's the best way to see files of an updated git bare repository? (concept of ls-tree)

I'm looking for a way to see the files on a git bare repository that were updated by other remote but without do a pull in my repository. I'll try to describe my doubt using an example locally. I create a folder, add two files and make a new…
zewill
  • 181
  • 1
  • 8