A *commit* is the "confirmation of a unit of work"
0
votes
1answer
15 views
How to create a table then commit then insert then commit and drop table?
Hi I am having a problem committing to a database. I am very new to Firebird SQL. But I have a query that creates a table, then commits it, then inserts it, commits it, view the data, drop the table ...
3
votes
2answers
46 views
A “Git” like workflow using Subversion?
In my previous team we used Git. I am used to performing small and many commits, that represent the ongoing progress of my development work.
When ready, i usually push changes to the central git ...
0
votes
1answer
20 views
Check each commit before it's commited on svn
I have a quite big project and i want to give some of the work to an indian company.
The project is hosted on a SVN Server, I want that one of my employees checks each commit of the extern developers ...
0
votes
2answers
12 views
Pass OracleTransaction value to new form
I have some stored Procedures on one form and at the end I do not commit or rollback. A new form loads and a question prompts the user "Are there any other products in the box?" When the user clicks ...
0
votes
2answers
35 views
How can I view what was added to a file in a certain commit?
I have a homework assignment in which I have to view the bootstrap repository. I have to answer this question "What single character was added to a file in commit e17c9 (ignoring any added spaces)? ...
3
votes
2answers
49 views
git - Commiting commits before other ones
New Question
Two querstions:
I'm trying to but a commit before ALL commits.
The bottom most commit has 660fb2a76211f36ec9a67d0454a90eab469e9fd0 as SHA. When I type git rebase -i ...
0
votes
1answer
24 views
Remove git history for distributing project for bug report?
My iOS app is having a strange core data bug, and I contacted Apple's developer technical support for help. They are asking me to submit a copy of the offending code, so they can see what is going on ...
0
votes
0answers
18 views
GIT merge with several targets in Xcode
I created a second target in my Xcode project and some images with the already existing names in the branding folder. Now if I commit the changes, push them to server and my teammate pulls them down, ...
1
vote
1answer
44 views
How to write a batch file for svn commit and update
so far I have used Tortoise SVN to commit and update folders under version control. When I commit I check "all" in the GUI dialog so that deletions as well as additions are committed.
Now I have more ...
-1
votes
0answers
18 views
SVN validation error with xcode + IOS [closed]
I am trying to commit files to my SVN through Xcode. However, I am getting following error:-
Error validating server certificate for 'https://rep.blah.com:xxx':
- The certificate is not issued by a ...
0
votes
1answer
30 views
How to tell when a user is making a tag vs a commit in Mercurial
I have a hook written for Mercurial. It uses the pretxncommit to make sure that the user includes an 'issue number' in their commit message. But sometimes the user may use the 'hg tag' command instead ...
0
votes
0answers
25 views
PHP + ORACLE - Managing transactions
I have script1.php and its code looks like below
$con = oci_pconnect(connection_details);
if(!$con){
//throw error;
}
$q1 = "SOME INSERT STATEMENT on EMPLOYEE TABLE";
$stid = oci_parse($con, $q1);
...
0
votes
4answers
39 views
setAutocommit(true) further explanations
I have come across this oracle java tutorial. As a beginner in the topic I cannot grasp why it's needed to set con.setAutocommit(true); at the end of the transaction.
Here is the oracle explanation:
...
0
votes
1answer
31 views
TortoiseSVN on Windows 8 can't commit
The situation:
I reinstalled my PC and installed Windows 8. I also installed the latest version of TortoiseSVN. My files are on another (Ubuntu) PC on my network, so windows sees that drive as a ...
0
votes
1answer
33 views
How do I get the SHA of the latest commit on a GitHub repository via jQuery?
I've been at this for several hours now and I have yet to find any useful information anywhere. I'm trying to use jQuery to get the latest commit of any GitHub repository from a single user to show up ...