Git is an open-source DVCS (Distributed Version Control System).
learn more… | top users | synonyms | git jobs
1
vote
3answers
17 views
Eclipse - External JARs and git
I am currently using eclipse for working with Java. Additionaly I use git to synchronize my project between my laptop and my desktop PC.
The problem is now the following: I added external JARs to the ...
1
vote
2answers
31 views
Git deployment rollback workflow
More and more server-side file deployments are handled using git. It's nice and there are plenty of guides available how to setup your deployment workflow with git, rsync and others.
However, I'd ...
2
votes
2answers
35 views
Showing the lastest changes of each subdirectory in git
In github if you open a repository you will see a page showing the lastest commit and time of each subdirectory and file.
Can I do this by command line in git?
3
votes
0answers
23 views
point gem branch path in gemfile
How to point gem branch path in gemfile.
That what i am doning.
gem 'rails', path: '/home/ubuntu/workspace/Fork/rails', :branch => 'any_of'
but when i am doing bundle update, it's not show ...
0
votes
1answer
14 views
Android Studio: Can't start Git
When I start Android Studio there's a message
Can't start Git: C:\Program Files (x86)\Git\cmd\git.cmd Probably the
path to Git executable is not valid. Fix it.
But I can see that the git.cmd ...
0
votes
1answer
7 views
How to configure RubyMine to use remote Git executable?
I have Windows on my host machine and guest Ubuntu server on VirtualBox. Project code is located on guest and RubyMine is on host. I have configured remote Ruby SDK and shared the project folder. This ...
1
vote
1answer
12 views
Setting up GIT on Mac OS to work with Google Code
When I try to push the repository from a MacOS Shell I get this error
fatal: remote error: Invalid username/password.
You may need to use your generated googlecode.com password; see ...
0
votes
0answers
10 views
How to find the process which has a lock on a file in a linux environment [migrated]
So I have a problem similar to this individual...
Git rename from index.lock to index failed
So it seems that he eventually solves his problem by finding a process which has a lock on his .git\index ...
1
vote
1answer
29 views
Github windows: Commit failed: Failed to create a new commit… continued issues
So it appears that I have the exact same problem as the individual who asked this question...
Github windows: Commit failed: Failed to create a new commit
I followed the steps suggested in the top ...
0
votes
1answer
9 views
Git & Netbeans -> Resetting a repo after it appears to have been corrupted
I am not very nuanced when it comes to GIT, despite my attempts in learning it, so pardon my asking what may be a simple question.
I have been developing an autodidactic program in Java (a secondary ...
0
votes
1answer
13 views
git finding the file name of the file being filtered by a smudge/clean filter
I am creating a smudge/clean git filter. The filter will need to know the name
of the file being filtered so that it can perform some external operations that
the result of which will be output by ...
0
votes
1answer
14 views
Make commits in detached head state, how do I apply them to a branch?
I did a git checkout and made some changes while in the detached head state. I commited the changes. How do I apply these changes to a specific branch? Can I checkout that branch and then do a git ...
1
vote
1answer
12 views
git smudge/clean filters to only act on text (not binary) files
While writing git filters for smudge & clean, I want to make sure that the filters only act on text files and not binary ones (images and the like).
Is there a way for git to tell me whether it ...
0
votes
1answer
15 views
Hard linking to file in Git tag (To include file in another project)
so I have a few small files that I use in a lot of different projects. For example, I have a MySQL wrapper for PHP and a class for managing buffers in C++ among others. Up to now, I've been keeping ...
0
votes
2answers
33 views
Collaborating On Local Machines with Rails/Postgres
I'm working on a project with two other remote coders. I'm setting up most of the models/DBs. We're going to be working off of github, so I'll post my basic backend infrastructure, then they'll add ...