Git is an open-source DVCS (Distributed Version Control System)
0
votes
0answers
73 views
Sharing library code across multiple projects
I have 3 solutions, one of them is a dataccess solution with all the repositories etc. At the moment when a change is made to it, the others have to go get the latest nuget version locally, we have a ...
13
votes
1answer
325 views
What are the advantages and disadvantages of cryptographically signing commits and tags in Git?
So someone peer reviewed my work, and he told me that I should always sign my commits and tags cryptographically. When asked why, he didn't know to explain it to me, and said "It's just a good thing ...
-1
votes
0answers
35 views
Windows system tray applications for git repo monitoring [closed]
Are there any Windows applications that can monitor upstream git repositories and notify you (via a system tray icon or something) if there are any new commits?
3
votes
1answer
123 views
GitHub Organizations for a project spanning multiple repositories?
I've started a project that involves at least three repositories on GitHub.
One of the repositories is a generic documentation-and-examples dump, and the other two contain the implementation of two ...
0
votes
0answers
27 views
Git newbie, might have messed up my repository [migrated]
So here is the deal, I'm using git and Bitbucket for my application. I'm using git-flow system for git. So the background is this. I had a release branch called release/v1.0.2 which had been open for ...
18
votes
10answers
944 views
Is it ever OK to commit non-working code?
Is it good idea to require to commit only working code?
This commit doesn't need to leave the repository in a working state as:
... we are in early design stages, the code is not yet stable.
...
-1
votes
0answers
31 views
maintaining a patch to a git fork (c++) [closed]
How would I go about creating a fork that can be kept up to date, and also changes of my own to the source which will be similar to a patch (and ideally it would be easy to create one against the ...
3
votes
2answers
58 views
Placing images into Git for a CRM
I have built this CMS that has the option to add entries to the database. Each entry that is created has about 5 to 10 new images showing the product for sale. Each image is about 150Kb in size.
I ...
1
vote
1answer
107 views
How to make a “git push” update files on your web host?
I have a few sites which are all hosted on the same web hosting service under shared hosting. My web host supports Git and I have SSH access to it, and I also have Git setup on my laptop as well.
I ...
4
votes
2answers
168 views
Git Staging: When to stage? What to do if modification occurs afterwards
I'm rather new to the broad world of Git. I have read the manual and have been practicing but I am confused about few aspects of it, which I couldn't figure out after searching for.
I'm wondering:
...
1
vote
1answer
98 views
Using Git - better to do lot of incremental updates or one big daily update? [duplicate]
Ive just started working with Git (Github) in anticipation for an up coming project I'm project managing and designing and developing the front end of.
One thing I couldn't work out is, is it ...
-5
votes
1answer
119 views
Create my own github [closed]
I'm looking for a way to easily set up a customized github site for internal use. The site needs to include all the main features of github - creating projects/repositories, allow to easily do ...
0
votes
0answers
28 views
All files unstaged in Ubuntu, but not Windows [migrated]
All my files become unstaged in Git, when using Ubuntu.
When I run git diff, Git shows:
--- a/<filename>
+++ b/<filename>
-<output of file>
+<output of file>
For example,
...
16
votes
1answer
672 views
My github pull request was merged, what's the convention at this stage?
I forked a project on Github, made a small change and sent a pull request to the original maintainer, who has pulled it in. Now the last commit there is Merged pull request #11 from ...
6
votes
3answers
231 views
Git for a solo developer [duplicate]
I'm a developer working on a Wordpress project. I work on this alone and I want to improve the way I use Git but I don't know where to start.
Currently, I'm using git to commit all of the work that ...