Most voted "commit" questions
commit is a command used in Git that serves to send modifications made to the source code of a project to the page of that project.
Learn more…61 questions
Sort by count of
-
0
votes1
answer305
viewsRecover git repository Feature
Create a Feature for my new project, do some commits and then push to the cloud. I deleted my local Feature and ended up deleting Feature from the cloud as well. I wonder if you have how to recover…
-
0
votes2
answers221
viewsCan you leave a commit only local?
The question may be kind of obvious or even confusing. But what I want to know is if there’s a way to leave a commit only local, for example. I’m working on a feature and such, did some important…
-
0
votes1
answer551
viewsHow do I reverse a specific commit from master?
I need to reverse a specific commit that is remote. How do I do this?
-
0
votes2
answers1348
viewserror while doing git push
I’m trying to upgrade a project to github but always q dou git push this error: error: src refspec master does not match any error: failed to push some refs to…
-
0
votes0
answers37
viewsReading SQL data without NOLOCK
I have a Stored Procedure (SQL Server) that is accessed by several applications concurrently at intervals of less than 1 minute. It was built using NOLOCK in its accesses, most likely to gain in…
-
0
votes0
answers35
viewsRemove the first commits from Git Code
Is there any way to reduce the history of git by removing older commits? Assuming a Repo has 5000 commits and removing the first 2500 commits.
-
0
votes1
answer304
viewsHow can I undo these 3 commits?
$ git status Refresh index: 100% (16/16), done. On branch master Your branch is Ahead of 'origin/master' by 3 commits. (use "git push" to Publish your local commits) Changes not staged for commit:…
-
0
votes1
answer100
viewsRevert a commit that hasn’t been pushed yet, and with multiple comits waiting to get pushed
In one of the commits that I performed I included a folder with several files that total about 5gB, trying to push the same commit occurred an error (fatal: The remote end hung up unexpectedly), and…
-
0
votes1
answer84
viewsCommitizen: Is it possible to override the "git commit" command?
Context I wish I could use the command git commit and be executed the cz. What happens I install the Commitzen Executed git commit Opens the common Git interface to create the commit message What I…
-
0
votes1
answer34
viewsError Nothing to commit (create/copy files and use "git add" to track)
So, I’m starting in git and I’m finding it difficult to commit a file. I did the whole step by step, created a repository and I can get to the add part (git add *), but when it comes to doing commit…
-
-1
votes1
answer75
viewsHow does Oracle act after running a PHP script without a commit?
If I run a series of SQL commands with Oracle database, OCI library, without running the commit and defining that it will not be done commit automatic. What will Oracle do at the end of running the…