3,375 questions
Best practices
1
vote
3
replies
62
views
How to make one commit of several changes on GitHub when working via the GUI and not using command line
First of all, yes, I have read all topics here related to my question. But other questions are based on changes made locally and using command line.
I'm asking about this specific situation: working ...
2
votes
1
answer
71
views
How to wait for replication at mariadb transaction commit?
I have a MariaDB cluster made with Galera and my clients use MaxScale with RW router.
I'm having an issue because the application has something this sequential steps:
Start trx1
Insert new record
...
0
votes
0
answers
18
views
Transactions not rolled back in FrankenPHP worker mode cause data loss after deployment — has anyone experienced this?
I’m running an application using FrankenPHP in worker mode. In one script, I use BEGIN TRANSACTION → SELECT → INSERT → COMMIT if certain conditions are met. But I forgot to call ROLLBACK when the ...
0
votes
1
answer
133
views
Show differences between commits with respect to a base
We use a common git strategy:
branch from main to a feature branch.
do commits in feature.
if main progresses, merge it to feature.
merge feature to main.
I want to view the changes that happened ...
0
votes
1
answer
45
views
Create commit from several files of another branch
Suppose I have a branch B1 that added files A, B, C, ..., Z.
Suppose I am at branch B2.
What I want is to get a subset of files (say A, E, I, O, U) from the latest state of B1 and create a commit in ...
0
votes
1
answer
115
views
Why on Azure DevOps after pull request on repo one appear 1 behind
Azure DevOps Repos, situation is really simple, we have
Branch Master ---+---+ Head
Branch Develop ---+---+ Head + ... + changes
After some commit on Develop, we create pull request from ...
-2
votes
1
answer
85
views
Visual Studio Code Source control not displaying files modified
I am trying to setup a React project in my laptop , cloning from a repository. Using VS code . Any files changed or added is not displaying on the source control. However only when made some changes ...
-1
votes
1
answer
55
views
There is one active patchset which is not merged to my Master....I want to merge that patch set to my local and don't want to affect remote [closed]
There is new version of 8 of my files which I have cloned , Those new 8 files are presented in a patchset which is not yet merged with the master,So I want to replace my old 8 files in local with that ...
0
votes
1
answer
54
views
Create a new branch from a commit online in GitHub?
I need to make a new branch from an old commit because I don't want the new broken code. I want to do it on GitHub online. That is, I don't have GitHub desktop and I can't get it because of work ...
0
votes
1
answer
102
views
Commit delay for MariaDB Galera cluster and MaxScale
I'm working in a clustered MariaDB database with Galera and MaxScale in r/w routing.
My question is if the commit command successful return implies a completed replication or not.
This is the scenario:...
0
votes
0
answers
46
views
System.Data.Entity.Infrastructure.CommitFailedException
System.Data.Entity.Infrastructure.CommitFailedException: An error was reported while committing a database transaction but it could not be determined whether the transaction succeeded or failed on the ...
1
vote
0
answers
52
views
JPA EclipseLink: UPDATE Not Executed After Committing Merges
Using EclipseLink 2.6.4 with JTA and the property eclipselink.persistence-context.flush-mode=commit.
The UPDATE in the database is not done when I'm trying to commit a transaction where several merges ...
1
vote
1
answer
3k
views
How to Use GitHub Copilot for Commit Message Generation
I am interested in using GitHub Copilot to help generate commit messages for my project. I have heard that it can provide suggestions based on specific commit message instructions. However, I am not ...
-5
votes
1
answer
103
views
Unnecessary files on GitHub Desktop [duplicate]
I'm Developing an MauiApp on my windows machine and on GitHub Desktop there are many unnecessary changes which are appearing .
these changes are related to bin/obj and other files ,Due to which it ...
0
votes
2
answers
117
views
Unable to update PR with a verified commit created by createCommitOnBranch
My goal is to generate verified commits, using GitHub's Graphql API. I created a test repository to validate the verified PR creation, and I see the GitHub Action generating the new README.md file. ...