A *commit* is the "confirmation of a unit of work"
1
vote
2answers
24 views
Must every git commit be an ancestor of a branch?
Given this git tree:
A <--- B <--- C (HEAD, master)
is it possible to put the tree into this state:
A <--- B (HEAD, master) <--- C
(There are no branches or tags other than master.) ...
0
votes
1answer
22 views
How can I commit my changes if I am working with a read only svn, in order to work with it on different computers?
I use SVN and I am working on a project which is read only. I would like to make my own modification of this code, but also get the official updates.
I am used to use svn for my projects and commit ...
0
votes
1answer
11 views
change an commited svn revision with sharpsvn
I have made an program that works can read out TortoiseSVN commits and shows it into listbox and a textbox.
Now I have to do this, when you press publish button then for each selected commit the ...
-1
votes
1answer
23 views
When should I commit and push in Test Driven Development? [closed]
My question regards TDD and when should I commit or push changes?
I'm wondering is it fine to push the code where some values returned by function are still faked or implementation is obvious to pass ...
0
votes
0answers
41 views
GitHub History Changes on Every Commit
So my team and I are having a very strange issue with Git / GitHub.
(a private repo)
Every time one of us commits, the commit history changes. This isn't a matter of different branches; at the ...
1
vote
0answers
12 views
svn - what best way to deal with multiple explicit files in status/commit etc
I have been experimenting with passing several files to svn commit/status/etc :
svn status -u -v file1, file2, file3 ... file1000
svn appears to run svn status -u -v on each filex in turn, is this ...
-2
votes
1answer
25 views
After committing /updating in SVN the project isn't seemed as android application project [closed]
I have a problem , I have updated the changes from SVN , the project isn't seemed as android application project , only the java files are seen . No Android dependencies or com.something.something ...
1
vote
1answer
22 views
Does git rebase update commits in other local branches?
I know I can test this experimentally, but having discussion would be nice. If I have a local head on (local branch) master that has diverged from the remote master, I tend to do a git pull --rebase ...
0
votes
0answers
20 views
How to push the amended commit message to remote
I followed this thread on how to amend the commit message.
It went well. But in the previous commit I pushed the updates to remote as well. Now once I changed the commit message, its rejecting the ...
0
votes
0answers
29 views
svn commit during build in Jenkins
During our build process, managed by Jenkins, we actually update some files and commit them to the repository. Since this happens by our build account, I am easily able to ignore this account's ...
0
votes
0answers
27 views
Git hook to create archive of changes on commit
A particular client does not give me access to their web server, so I need to send all updates to them as a zip.
How can I set up a Git hook that will create a zip archive of the latest commits that ...
0
votes
1answer
37 views
github - how to remove commit from branch
I have read a lot of questions and answers which could be related to my question, but I can't find an answer. Maybe because I'm not experienced git user. Then I'm sorry and would be grateful for links ...
1
vote
2answers
16 views
Taking the changes of a specific file from a past commit and putting it in a new branch
a while back I changed a file. today I want to add these changes to a few branches. The thing is that the commit of which that file was changed also include other files, which I don't want to be ...
0
votes
0answers
13 views
Does autocommit stay disabled in the second connection?
Does autocommit stay disabled in the 2. mysql connection after you close the first mysql one and open the second? MYSQLi
For example if i have something like the code below. Would i have to turn it ...
0
votes
2answers
25 views
How to subversion commits make private
I have been working on a project shared in svn. I am working from home as well as from office. I wanted to commit some files from office privately (may be partial functionality) so that I can update ...